Created
April 26, 2012 15:38
-
-
Save palimadra/2500440 to your computer and use it in GitHub Desktop.
WordPress - Add a theme editor to the Admin bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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