Vertical Admin Bar

Vertical Admin Bar displays the WordPress toolbar vertically.

Author:Gabriel Hautclocq (profile at wordpress.org)
WordPress version required:3.3.0
WordPress version tested:3.3.2
Plugin version:1.0.0
Added to WordPress repository:25-01-2012
Last updated:25-01-2012
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:100
Rated by:1
Plugin URI:http://www.gabsoftware.com/products/scripts/v...
Total downloads:1 359
Active installs:10+
plugin download
Click to start download

Vertical Admin Bar displays the WordPress toolbar vertically on the left of the screen on the blog front-end. It does not affect the toolbar in the Dashboard of your blog because of the existing vertical menu: it is vertical only when logged in users are viewing your blog front-end.

At present, the height of the admin bar has been set to 740px. That should be enough for most menus to display correctly. If you need to override this value, do not change it in your code. Instead, add the vab_admin_bar_height filter in the functions.php of your theme. For example, to set a height of 1024, use the following code:

function my_function_callback() { return 1024; }
add_filter( 'vab_admin_bar_height', 'my_function_callback' );

Known problems: I do not know if it works for IE 8 and older. Probably not, but can't test. It has been tested to work with Opera 11.52, IE9, Firefox 8.0 and Chromium 18.0.965. Also, I had to set an arbitrary height for the admin bar, or the menu would be stretched outside the page. If someone has a solution to make the menu take 100% of the screen height (not the page height), please let me know 🙂