在单个页面上突出显示当前Wordpress类别';wp#u list';
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在单个页面上突出显示当前Wordpress类别';wp#u list';相关的知识,希望对你有一定的参考价值。
Uses the 'current_category' parameter of 'wp_list_categories'. Add relevant CSS as appropriate...
<?php // ...for 'wp_list_categories' if(is_single()) { $category = get_the_category(); $class .= $category[0]->cat_ID; }?> <?php wp_list_categories('orderby=id&child_of='.$categoryObj->category_parent.'&hide_empty=0&title_li=&use_desc_for_title=0&exclude=5¤t_category='.$class); ?>
以上是关于在单个页面上突出显示当前Wordpress类别';wp#u list';的主要内容,如果未能解决你的问题,请参考以下文章