我正在使用
<?php
foreach((get_the_category()) as $category) {
$cats .= $category->cat_name . ', ';
}
echo rtrim($cats, ', ');
?>
显示帖子的类别名称。我将如何从此列表中删除特定类别
答案 0 :(得分:3)
未经测试,但这样的事情应该有效:
<?php
foreach((get_the_category()) as $category)
{
if($category->cat_name == "category name")
{
}
else
{
$cats .= $category->cat_name . ', ';
}
}
echo rtrim($cats, ', ');
?>