WordPress在标签云中添加文章数量(修改代码)

网站APP, 转自点点 13 年前 回复

, , , ,

标签云 显示该标签下的文章数量,方便我们统计,用到函数 wp_tag_cloud

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效果等等。

转自http://www.511yj.com/wordpress-tags-numbs.html

支付宝打赏微信打赏

如果此文对你有帮助,欢迎打赏作者。

发表评论

欢迎回来 (打开)

(必填)