Skip to content

Instantly share code, notes, and snippets.

@thewebprincess
Last active October 14, 2016 08:11
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 thewebprincess/5668762 to your computer and use it in GitHub Desktop.
Save thewebprincess/5668762 to your computer and use it in GitHub Desktop.
Template Print Snippet
<?php
add_action('wp_head', 'your_show_template_function');
/**
* show_template function.
*
* @access public
* @return void
*/
function your_show_template_function() {
global $template;
print_r($template);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment