Skip to content

Instantly share code, notes, and snippets.

@palimadra
Created April 26, 2012 15:38
Show Gist options
  • Save palimadra/2500440 to your computer and use it in GitHub Desktop.
Save palimadra/2500440 to your computer and use it in GitHub Desktop.
WordPress - Add a theme editor to the Admin bar
// Add Theme Editor to Admin Bar (to save time!)
function admin_bar_theme_editor_option() {
global $wp_admin_bar;
if ( !is_super_admin() || !is_admin_bar_showing() )
return;
$wp_admin_bar->add_menu(
array( 'id' => 'edit-theme',
'title' => __('Edit Theme'),
'href' => admin_url( 'theme-editor.php')
)
);
}
add_action( 'admin_bar_menu', 'admin_bar_theme_editor_option', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment