Skip to content

Instantly share code, notes, and snippets.

@DarioBF
Created September 27, 2021 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DarioBF/e01096ec5e0fa53b5891e606c0ad8703 to your computer and use it in GitHub Desktop.
Save DarioBF/e01096ec5e0fa53b5891e606c0ad8703 to your computer and use it in GitHub Desktop.
Which template is WordPress using?
add_action('wp_head', 'show_template');
function show_template() {
global $template;
echo basename($template);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment