我有一个图片库,它有一些过滤器控件。现在他们工作正常,一切都很好。我唯一需要做的就是删除featured
过滤器在图库页面上显示,因为这仅用于帮助在主页上提取图像。
目前在我的项目页面上,我创建了列表项,这些项目是过滤器slugs的链接。
无论如何我可以说,如果特色不显示?
<?php
// Get the taxonomy
$terms = get_terms('filter');
// set a count to the amount of categories in our taxonomy
$count = count($terms);
// set a count value to 0
$i = 0;
// test if the count has any categories
if ($count > 0) {
// break each of the categories into individual elements
foreach ($terms as $term) {
// increase the count by 1
$i++;
$feat = term_exists('featured', 'filter', 'project');
if ($feat !== 0 && $feat !== null) {
$feat .= "";
}
// rewrite the output for each category
$term_list .= '<li><a href="javascript:void(0)" class="' . $term->slug . '">' . $term->name . '</a></li>';
// if count is equal to i then output blank
if ($count != $i) {
$term_list .= '';
} else {
$term_list .= '';
}
}
// print out each of the categories in our new format
echo $term_list;
}
?>
</ul>
答案 0 :(得分:1)
我找到了能够为我工作的东西:
:此:强>
$terms = get_terms('filter');
对此:
$terms = get_terms( 'filter', array(
'exclude' => '6'
) );
6
是我的分类中slug的ID。
简单排除了列表中出现的其中一个类别,这意味着没有人可以点击的链接。任务完成。希望这可以帮助别人。