PHP 将帖子计数移动到WordPress的存档和类别小部件的链接中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将帖子计数移动到WordPress的存档和类别小部件的链接中相关的知识,希望对你有一定的参考价值。

<?php /* This code filters the Categories archive widget to include the post count inside the link */
add_filter('wp_list_categories', 'cat_count_span');
function cat_count_span($links) {
$links = str_replace('</a> (', ' (', $links);
$links = str_replace(')', ')</a>', $links);
return $links;
}
/* This code filters the Archive widget to include the post count inside the link */
add_filter('get_archives_link', 'archive_count_span');
function archive_count_span($links) {
$links = str_replace('</a> (', ' (', $links);
$links = str_replace(')', ')</a>', $links);
return $links;
}?>

以上是关于PHP 将帖子计数移动到WordPress的存档和类别小部件的链接中的主要内容,如果未能解决你的问题,请参考以下文章

带有年、月、日、帖子和评论计数的 Wordpress 存档列表

php 将帖子计数类添加到WordPress循环

php 在主博客和存档页面上显示WordPress自定义帖子类型

WordPress 自定义帖子类型存档-<帖子类型>.php 不起作用

在 Wordpress 中显示存档帖子

控制 wordpress 存档页面上的帖子数量