📜  查找服务当前页面的模板 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:49.730000             🧑  作者: Mango

代码示例1
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