0

我正在尝试使用 is_singular(array()) 仅将某些帖子类型的样式排入队列,但是当我定义帖子类型静态时它可以工作,而当我使用 get_option 添加时它不起作用。

这是我的代码。

// load front end scripts
function rm_scripts() {

    $types = new review_media_system;
    $ptpys = $types->rm_allow_types();

    echo $ptpys;

    if(!is_admin()){
       wp_enqueue_style('rm-stylesheet', RM_URL.'css/rm-style.css',null, 1);

       if(is_singular(array($ptpys))){
            wp_enqueue_style('rm-admin_gallery_css', RM_URL.'css/responsiveslides.css',null, 1);                    
       }
    }    

}
add_action('wp_enqueue_scripts', 'rm_scripts');
4

0 回答 0