wp列出parenthises()中包含帖子总数的类别一些有用的例子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wp列出parenthises()中包含帖子总数的类别一些有用的例子相关的知识,希望对你有一定的参考价值。
Show wp categories in drop down list like ...
join all categoeis and show total post in category ================================================== <?php $categories = get_categories(); foreach ($categories as $cat) { if ($cat->category_parent != 0) { echo '<span style="padding-left:10px;">'; } echo 'category_nicename.'/">'.$cat->cat_name.' ('.$cat->category_count.')'; if ($cat->category_description != '') { echo ' - '.$cat->category_description; } if ($cat->category_parent != 0) { echo '</span>'; } echo ' '; } ?> remove parenthises from wp_list_categories() ============================================== $variable = wp_list_categories('echo=0&show_count=1&child_of=&title_li='); $variable = str_replace(array('(',')'), '', $variable); $variable = str_replace("<ul>" , '' , $variable ); echo $variable;
以上是关于wp列出parenthises()中包含帖子总数的类别一些有用的例子的主要内容,如果未能解决你的问题,请参考以下文章