我如何才能获得一篇文章的第一个类别(链接到类别存档页),而不包括名为“特色”的类别?我找到了各种解决方案,但我无法将它们正确地结合起来。
谢谢
更新时间:
这就是我最终使用的:
$category = get_the_category();
$cat_id = get_cat_ID( $name );
$link = get_category_link( $cat_id );
if($category[0]->cat_name == "featured") {
echo \'<a href="\'. esc_url( $link ) .\'"">\'. $category[1]->cat_name .\'</a>\';
} else {
echo \'<a href="\'. esc_url( $link ) .\'"">\'. $category[0]->cat_name .\'</a>\';
}