从WordPress支持论坛输入这个方便的功能-只需将它添加到主题的功能中即可。php文件:
function the_category_filter($thelist,$separator=\' \') {
// list the IDs of the categories to exclude
$exclude = array(366);
// create an empty array
$exclude2 = array();
// loop through the excluded IDs and get their actual names
foreach($exclude as $c) {
// store the names in the second array
$exclude2[] = get_cat_name($c);
}
// get the list of categories for the current post
$cats = explode($separator,$thelist);
// create another empty array
$newlist = array();
foreach($cats as $cat) {
// remove the tags from each category
$catname = trim(strip_tags($cat));
// check against the excluded categories
if(!in_array($catname,$exclude2))
// if not in that list, add to the new array
$newlist[] = $cat;
}
// return the new, shortened list
return implode($separator,$newlist);
}
// add the filter to \'the_category\' tag
add_filter(\'the_category\',\'the_category_filter\', 10, 2);
最初,我确实对这个函数有一些问题;经过一番修补,我意识到我需要在\\u category()标记中声明一个分隔符,如逗号、破折号等。在本例中,我只使用了一个空格-
the_category(\' \')
— 这不起作用,但将其换成一个不间断的空间就成功了:
the_category(\' \').
信用证:http://www.stemlegal.com/greenhouse/2012/excluding-categories-from-the-category-tag-in-wordpres/