wordpress标签云显示文章数量两种方法

1、在functions.php中加入代码

//标签显示文章数量
function Tagno($text) {
$text = preg_replace_callback('|<a (.+?)</a>|i', 'tagnoCallback', $text);
return $text;
}
function tagnoCallback($matches) {
$text=$matches[1];
preg_match('|title=(.+?)style|i',$text ,$a);
preg_match("/[0-9]+/",$a[1],$a);
return "<a ".$text ."<span>(<em>".$a[0]."</em>)</span></a>";
}
add_filter('wp_tag_cloud', 'Tagno', 1);

在tag.php页面调用:

<?php wp_tag_cloud('smallest=8&largest=22'); ?>

2、使用jQuery
在tag包含文章数目的页面模板中加入如下js代码

<script>
jQuery(".tagclouds a").append("<span></span>");
jQuery(".tagclouds a").find("span").html( function(){var s=$(this).parent().attr("title").replace(/[^0-9]/ig, "");
return "["+parseInt(s)+"]";});
</script>

3、注意
jquery方法需要先加载jquery.js。
jquery方法中的 tagclouds 是包含标签云wp_tag_cloud 函数的dom层的class或者id。原理是在标签后加一个文本层。并将tag的title取出,正则取所含文章数。如果你想要更多的显示效果可以自己定义了,比如延时载入,hover效果等等。(转自百度)


发布日期:

所属分类: Wordpress 综合 标签:    


没有相关文章!