=== Widgets Admin Fix === Contributors: Ptah Dunbar Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7881553 Tags: widgets, admin Requires at least: 2.8 Tested up to: 2.8.4 Stable tag: 0.1 This plugin adds the ability to link to specific sidebars in the widgets admin page and have them open up automatically. == Description == This plugin adds the ability to link to specific sidebars in the widgets admin page and have them open up automatically. === Usage ===
<a href="<?php echo admin_url( 'widgets.php' ) .'?sidebar=aside'; ?>">Add Widgets</a>You'll need to know the IDs of the sidebars you'd like to have opened. For multiple sidebars, simply separate them with commas.
<a href="<?php echo admin_url( 'widgets.php' ) .'?sidebar=aside,body_open,before_the_loop'; ?>">Add Widgets</a>Alternatively, you can use the
add_widgets_link() function:
<?php echo add_widgets_link( 'aside', 'Add Widgets to Aside' ); ?> <?php echo add_widgets_link( 'aside,body_open,before_the_loop' ); ?>== Installation == 1. Upload the 'widgets-admin-fix' folder to the '/wp-content/plugins/' directory 2. Activate the plugin through the 'Plugins' menu in WordPress == Changelog == = 0.1 = * Initial Release. (08/31/09)