wp列出parenthises()中包含帖子总数的类别一些有用的例子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wp列出parenthises()中包含帖子总数的类别一些有用的例子相关的知识,希望对你有一定的参考价值。

Show wp categories in drop down list like ...
  1. join all categoeis and show total post in category
  2. ==================================================
  3. <?php
  4. $categories = get_categories();
  5. foreach ($categories as $cat) {
  6. if ($cat->category_parent != 0) {
  7. echo '<span style="padding-left:10px;">';
  8. }
  9. echo 'category_nicename.'/">'.$cat->cat_name.' ('.$cat->category_count.')';
  10. if ($cat->category_description != '') {
  11. echo ' - '.$cat->category_description;
  12. }
  13. if ($cat->category_parent != 0) {
  14. echo '</span>';
  15. }
  16. echo ' ';
  17. }
  18. ?>
  19.  
  20. remove parenthises from wp_list_categories()
  21. ==============================================
  22. $variable = wp_list_categories('echo=0&show_count=1&child_of=&title_li=');
  23. $variable = str_replace(array('(',')'), '', $variable);
  24. $variable = str_replace("<ul>" , '' , $variable );
  25. echo $variable;

以上是关于wp列出parenthises()中包含帖子总数的类别一些有用的例子的主要内容,如果未能解决你的问题,请参考以下文章

在主题Wordpress中包含jquery

在 Rails 中包含带有帖子的评论

html For循环,在div中包含每两个帖子

如何在 Wordpress 自定义帖子类型查询中包含分页

在Wordpress中包含jQuery

在无限滚动Wordpress帖子中包含脚本