Ever got stuck wondering which page wordpress is actually loading? Wonder no more! Simply add this text to your functions file, save, upload and refresh. Viola, it will print the page template WordPress is trying to load so you know exactly which file to modify and bend to your every whim.
add_action('wp_head', 'show_template'); function show_template() { global $template; print_r($template); }
© Copyright 2023 Sethmatics Websites All Rights Reserved.