Add to functions.php file
function meks_which_template_is_loaded() {
if ( is_super_admin() ) {
global $template;
print_r( $template );
}
}
add_action( 'wp_footer', 'meks_which_template_is_loaded' );
Add to functions.php file
function meks_which_template_is_loaded() {
if ( is_super_admin() ) {
global $template;
print_r( $template );
}
}
add_action( 'wp_footer', 'meks_which_template_is_loaded' );