Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

display page template using functions.php

function define_current_theme_file( $template ) {
    $GLOBALS['current_theme_template'] = basename($template);

    return $template;
}
add_action('template_include', 'define_current_theme_file', 1000);

# Echo result in header.php
echo $GLOBALS['current_theme_template'];
 
PREVIOUS NEXT
Tagged: #display #page #template
ADD COMMENT
Topic
Name
7+3 =