从wordpress中的列表中删除特定类别

时间:2014-03-22 15:31:01

标签: php wordpress categories

我正在使用

<?php
    foreach((get_the_category()) as $category) {
        $cats .= $category->cat_name . ', ';
    }
    echo rtrim($cats, ', ');
?>

显示帖子的类别名称。我将如何从此列表中删除特定类别

1 个答案:

答案 0 :(得分:3)

未经测试,但这样的事情应该有效:

<?php
foreach((get_the_category()) as $category) 
{
    if($category->cat_name == "category name")
    {

    }
    else
    {
        $cats .= $category->cat_name . ', ';
    }
}
echo rtrim($cats, ', ');
?>