Javascript code for Category

时间:2016-02-08 作者:jethron5000

我是否可以检查脚本是否可以针对特定类别进行加密?例如,我只想加密http://www.example.com/category/news/education, 对于http://www.example.com/category/news/dogs, 等等等等。

谢谢

你好Jeremy

1 个回复
SO网友:Aftab

在你的主题函数中写下这个。php文件

function category_enqueue_script() {
    $cat_education_id = \'xx\'; // category id for "education"
    $cat_dog_id = \'yy\'; // category id for "dog"
    if ( is_category() && ( is_category( $cat_education_id ) || is_category( $cat_dog_id ) ) ) {
         wp_enqueue_script( \'my-js\', \'filename.js\', false );
    }
}

add_action( \'wp_enqueue_scripts\', \'category_enqueue_script\' );