Wordpress-分类导航的最后一节课
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-分类导航的最后一节课相关的知识,希望对你有一定的参考价值。
---------------------------------------------- Functions.php ---------------------------------------------- function add_last_class($input) { if( !empty($input) ) { $pattern = '/<li class="(?!.*<li class=")/is'; $replacement = '<li class="last '; $input = preg_replace($pattern, $replacement, $input); echo $input; } } ---------------------------------------------- Header.php Need to put echo=0 for it to work when calling this function ---------------------------------------------- <?php add_last_class(wp_list_categories('title_li=&echo=0'));?>
以上是关于Wordpress-分类导航的最后一节课的主要内容,如果未能解决你的问题,请参考以下文章