这个is_page()
使用post id,post slug无法工作。下面是我在文章末尾的divi子主题中使用的代码functions.php
文件
function addingcattocatlist($cat_list){
if ( is_page(\'blog\') ) {
$cat_list = \'blog: \'. \'\' .$cat_list;
}
return $cat_list;
}
add_filter(\'the_category\' , \'addingcattocatlist\', 10);