Created
July 13, 2013 09:17
-
-
Save ShaneGowland/5990132 to your computer and use it in GitHub Desktop.
Adds a new link to the WordPress toolbar.
This file contains 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 a link to the theme editor | |
function editor_toolbar_link($wp_admin_bar) { | |
$args = array( | |
'id' => 'editor', | |
'title' => 'Theme Editor', | |
'href' => 'http://thewebatom.net/wp-admin/network/theme-editor.php', | |
'meta' => array( | |
'class' => 'editor', | |
'title' => 'WordPress Theme Editor' | |
) | |
); | |
$wp_admin_bar->add_node($args); | |
} | |
add_action('admin_bar_menu', 'editor_toolbar_link', 999); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment