Created
May 21, 2018 13:52
-
-
Save leemcd56/5e87fc1eca2f94fa009a691918974243 to your computer and use it in GitHub Desktop.
Current template in Wordpress 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
<?php | |
// Trouble knowing the current template? | |
add_action('admin_bar_menu', function ($adminBar) { | |
global $template; | |
$templateName = basename($template); | |
$adminBar->add_menu([ | |
'id' => 'template-name', | |
'parent' => 'top-secondary', | |
'title' => 'Template: ' . $templateName, | |
'href' => '#', | |
'meta' => [ | |
'title' => __('Template name') | |
] | |
]); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment