在 Wordpress 中显示特定类别
Show specific categories in Wordpress
我有800多个分类,因为1个post可能有10多个。我想在首页只显示X个分类。我该怎么做?
$id = get_the_ID();
$cats = wp_get_post_categories($id);
$i=0;
foreach ( $cats as $cat ){
if($i <10){
//Dosomething with $cat
}
$i++;
}
通过设置计数器,您可以显示所需的类别
我有800多个分类,因为1个post可能有10多个。我想在首页只显示X个分类。我该怎么做?
$id = get_the_ID();
$cats = wp_get_post_categories($id);
$i=0;
foreach ( $cats as $cat ){
if($i <10){
//Dosomething with $cat
}
$i++;
}
通过设置计数器,您可以显示所需的类别