Wordpress垂直菜单与帖子计数

时间:2014-09-01 19:40:39

标签: wordpress

我的侧边栏中有一个垂直菜单,如下所示

<li><a href="/computers" title="Computers">Computers<span class="count">1000</span></a></li>

那么,我可以创建一个像这样的垂直菜单吗?帖子数量浮动在右侧?

1 个答案:

答案 0 :(得分:0)

<?php
$variable = wp_list_categories('title_li=&echo=0&show_count=1');
$variable = str_replace( '(', '<span style="float:right;margin-top:-18px;font-size:11px;">(', $variable);
echo $variable;
?>

我用这段代码做得很好!