Guest User

Untitled

a guest
May 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. // Trouble knowing the current template?
  4. add_action('admin_bar_menu', function ($adminBar) {
  5. global $template;
  6. $templateName = basename($template);
  7.  
  8. $adminBar->add_menu([
  9. 'id' => 'template-name',
  10. 'parent' => 'top-secondary',
  11. 'title' => 'Template: ' . $templateName,
  12. 'href' => '#',
  13. 'meta' => [
  14. 'title' => __('Template name')
  15. ]
  16. ]);
  17. });
Add Comment
Please, Sign In to add comment