Last active
February 8, 2017 17:39
-
-
Save em-piguet/f98b19b8aced4048ff00a5123190cb03 to your computer and use it in GitHub Desktop.
Helper for dev in wordpress
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
<?php | |
function show_current_template($wp_admin_bar) | |
{ | |
global $template; | |
$args = array( | |
'id' => 'current_template', | |
'title' => basename($template), | |
'meta' => array('title' => $template), | |
); | |
$wp_admin_bar->add_node($args); | |
} | |
if (current_user_can('manage_options') && !is_admin()) { | |
add_action('admin_bar_menu', 'show_current_template', 9999); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment