将posts计数移到WordPress的Archive和Category小部件的链接中

Posted

tags:

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

Genius stuff right here from https://gist.github.com/BronsonQuick
  1. <?php /* This code filters the Categories archive widget to include the post count inside the link */
  2. add_filter('wp_list_categories', 'cat_count_span');
  3. function cat_count_span($links) {
  4. $links = str_replace('</a> (', ' (', $links);
  5. $links = str_replace(')', ')</a>', $links);
  6. return $links;
  7. }
  8. /* This code filters the Archive widget to include the post count inside the link */
  9. add_filter('get_archives_link', 'archive_count_span');
  10. function archive_count_span($links) {
  11. $links = str_replace('</a>&nbsp;(', ' (', $links);
  12. $links = str_replace(')', ')</a>', $links);
  13. return $links;
  14. }?>

以上是关于将posts计数移到WordPress的Archive和Category小部件的链接中的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress 循环:获取循环内的当前帖子计数

将站点移到子文件夹后,WordPress无法登录到wp-admin

Wordpress:如何通过自定义分类法在作者页面中显示帖子计数

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

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

通过Wordpress rss feed显示过去7天内观看次数最多的观看次数