Wordpress-分类导航的最后一节课

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-分类导航的最后一节课相关的知识,希望对你有一定的参考价值。

  1. ----------------------------------------------
  2. Functions.php
  3. ----------------------------------------------
  4.  
  5. function add_last_class($input) {
  6. if( !empty($input) ) {
  7.  
  8. $pattern = '/<li class="(?!.*<li class=")/is';
  9. $replacement = '<li class="last ';
  10.  
  11. $input = preg_replace($pattern, $replacement, $input);
  12.  
  13. echo $input;
  14. }
  15. }
  16.  
  17. ----------------------------------------------
  18. Header.php
  19.  
  20. Need to put echo=0 for it to work when calling
  21. this function
  22. ----------------------------------------------
  23.  
  24.  
  25. <?php add_last_class(wp_list_categories('title_li=&echo=0'));?>

以上是关于Wordpress-分类导航的最后一节课的主要内容,如果未能解决你的问题,请参考以下文章

C#第一节课

Linux学习第一节课(2019.9.6)

java第一节课

第11节:编程式导航

3.18 ip通信基础(第四周 第一节课)

wordpress上面如何在导航栏上面添加子分类