Skip to content

Instantly share code, notes, and snippets.

@em-piguet
Last active February 8, 2017 17:39
Show Gist options
  • Save em-piguet/f98b19b8aced4048ff00a5123190cb03 to your computer and use it in GitHub Desktop.
Save em-piguet/f98b19b8aced4048ff00a5123190cb03 to your computer and use it in GitHub Desktop.
Helper for dev in wordpress
<?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