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

前端之家收集整理的这篇文章主要介绍了wordpress标签云显示文章数量两种方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

1、在functions.PHP中加入代码

//标签显示文章数量

function Tagno($text) {

$text = preg_replace_callback('|

return $text;

}

function tagnoCallback($matches) {

$text=$matches[1];

preg_match('|title=(.+?)style|i',$text,$a);

preg_match("/[0-9]+/",$a[1],$a);

return "

}

add_filter('wp_tag_cloud','Tagno',1);

在tag.PHP页面调用

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

2、使用jQuery


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

jQuery(".tagclouds a").append("

jQuery(".tagclouds a").find("span").html( function(){var s=$(this).parent().attr("title").replace(/[^0-9]/ig,"");

return "["+parseInt(s)+"]";});

3、注意


jquery方法需要先加载jquery.js。


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

原文链接:https://www.f2er.com/wordpress/422806.html

猜你在找的wordpress相关文章