Skip to content

Instantly share code, notes, and snippets.

@johanguse
Created October 19, 2023 13:07
Show Gist options
  • Save johanguse/604c25f18fcd97bb74b52fe0110676ee to your computer and use it in GitHub Desktop.
Save johanguse/604c25f18fcd97bb74b52fe0110676ee to your computer and use it in GitHub Desktop.
Show the page file template name
add_filter( 'the_content', 'so_9405896_the_content_filter', 20, 1 );
function so_9405896_the_content_filter( $content )
{
if( is_admin() || !current_user_can( 'administrator' ) )
return $content;
global $template;
$the_templ = '<strong style="background-color: #CCC;padding:10px">TEMPLATE = '
. basename( $template ) . '</strong><br />';
$content = sprintf( $the_templ . '%s', $content );
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment