我已经使用wp_list_categories创建了类别列表,并设置了$args,如下所示,以便将类“current cat”添加到当前类别项目中,一切正常,但当我单击“All categories”时,我无法突出显示列表菜单,因为类“current cat”不适用于“All categories”项目。
如何将当前cat类应用于“所有类别”?
我的背景
<ul>
<?php
$args = array(
'show_option_all' => 'All Categories',
'orderby' => 'id',
'style' => 'list',
'use_desc_for_title' => 0,
'hierarchical' => 0,
'title_li' => '',
'current_category' => 0
);
wp_list_categories( $args );
?>
</ul>
HTML输出
<ul> <li class="cat-item-all"><a href="http://example.com/">All Categories</a></li> <li class="cat-item cat-item-1 current-cat"><a href="http://example.com/category/category-one/">Category one</a></li> <li class="cat-item cat-item-2"><a href="http://example.com/category/category-two/">Category two</a></li> <li class="cat-item cat-item-3"><a href="http://example.com/category/category-three/">Category three</a></li> <li class="cat-item cat-item-4"><a href="http://example.com/category/category-four/">Category four</a></li> </ul>
如果您不响应结果,而是将它们存储在变量中,我们可以检查该类是否存在。如果没有,那就意味着我们属于“所有”类别。
为此,我采取了以下措施:
$args = array(
'show_option_all' => 'All',
'title_li' => '',
'echo' => false, // dont echo the results
'taxonomy' => 'tribe_events_cat'
);
$categories = wp_list_categories($args); // store the results in a variable
if(strpos($categories,'current-cat') == false) { // check if the class exists
// add the class to the All item if it doesn't exist
$categories = str_replace('cat-item-all', 'cat-item-all current-cat', $categories);
}
echo $categories;
您将不得不更改$args以适应您的目的。