Temukan template yang melayani halaman saat ini

function show_template() {
    if( is_super_admin() ){
        global $template;
        print_r($template);
    } 
}
add_action('wp_footer', 'show_template');

//displays the current template only for super admins
Bongani