我当前用于显示类别的代码是<?php foreach((get_the_category()) as $category) { echo $category->cat_name . \' \';}?>
我想排除名为“home featured”的类别或ID为“65”的类别如何将其添加到上述代码中?
我当前用于显示类别的代码是<?php foreach((get_the_category()) as $category) { echo $category->cat_name . \' \';}?>
我想排除名为“home featured”的类别或ID为“65”的类别如何将其添加到上述代码中?
您可以这样做:
<?php
$exclude = array( \'home-featured\' );
foreach( get_the_category() as $category ) {
if ( ! in_array( $category->cat_name, $exclude )
echo $category->cat_name . \' \';
}
?>
我对wordpress还很陌生,每天都会遇到新的事情——其中一件就是今天我偶然遇到的get_terms 注意到它基本上与get_category. 使用其中一种有什么特别的原因吗?有什么我遗漏的吗?