Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Find template serving current page

function show_template() {
    if( is_super_admin() ){
        global $template;
        print_r($template);
    } 
}
add_action('wp_footer', 'show_template');

//displays the current template only for super admins
Source by wordpress.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #Find #template #serving #current #page
ADD COMMENT
Topic
Name
8+1 =