一般来说, 可以通过 显示相关文章来 增加页面浏览量 Page Views. 另一种方法就是显示 历史上的今天. 把下面PHP代码复制一份到 函数模板 functions.php 的最后. 推荐在子主题里修改这样每次主题更新你就不需要重新再复制了.
function today_in_histroy(){
$today = getdate();
$args = array(
'date_query' => array(
array(
'year' => $today['year'],
'compare' => '!=',
),
array(
'month' => $today['mon'],
'day' => $today['mday'],
),
),
);
$postlist = get_posts($args);
$html = '<h3 class="tih-title">Posts of Historic Today</h3><ul class="tih-title-list">';
if(!empty($postlist)){
foreach ($postlist as $key => $post) {
$html .= '<li class="tih-title-item"><a href="' . get_permalink($post->ID) . '" title="' . $post->post_title . '">' . $post->post_title . '</a></li>';
}
$html .= '</ul>';
return $html;
}
return "";
}
function add_today_in_histroy($content){
global $post;
return $content . today_in_histroy();
}
add_filter('the_content','add_today_in_histroy');
原理很简单 就是通过查询 数据库里 日期和今天 一样的帖子 并用 add_filter 函数把 HTML代码给 更新到文章内容变量 the_content 里.
![wordpress 如何在文章最后显示 历史上的今天 [Wordpress]? PHP是最好的语言 wordpress 互联网 小技巧 程序设计 编程 网站信息与统计 wordpress 如何在文章最后显示 历史上的今天 [Wordpress]? PHP是最好的语言 wordpress 互联网 小技巧 程序设计 编程 网站信息与统计](https://helloacm.com/wp-content/uploads/2015/11/wordpress.jpg)
wordpress
英文: 如何在文章最后显示 历史上的今天 [Wordpress]?
Wordpress博客技术文章
- WordPress 如何让 RSS feed 输出全文?
- 为博客Wordpress添加两个显示十大文章的短指令 shortcode
- 添加短代码(Short Code Function)以在 WordPress 帖子或页面中包含任何 PHP 或 HTML 文件
- 给Wordpress提了个BUG得到了一件免费的T-Shirt
- 最简单有效的过滤Wordpress垃圾评论的方法
- 怎么样对你的Wordpress博客进行汉化?
- 怎么样移动Wordpress博客的评论?
- Wordpress 博客使用 AMP 移动加速的技术和技巧
- 怎么样正确的统计WORDPRESS博文的汉字个数?
- 本人提供有偿 WORDPRESS或相关网站 速度SEO优化等服务
- 如何把 隐藏 WORDPRESS 的顶部管理菜单?
- 通过PHP脚本 批量设置 WORDPRESS 博客文件夹属性
- 在WORDPRESS管理员界面上面添加菜单选项
- 开发 Wordpress 插件 教程 - 插件是如何工作的?
- Wordpress 最简单的过滤垃圾评论的方法
- 如何显示缩略图 随机文章 Wordpress?
- 如何在文章最后显示 历史上的今天 [Wordpress]?
- 登陆 Wordpress 之后不显示Adsense广告
- 如何在指定的文章里不显示Adsense广告? Adsense真是矫情
上一篇: 剑桥 U-寿司
下一篇: 如何显示缩略图 随机文章 WordPress?
扫描二维码,分享本文到微信朋友圈
有现成的插件wp-today,比这个简单
好的, 多谢 我了解一下
子主题还要写个stylesheet,不如封成自定义插件,一劳永逸.
有道理 其实 插件 也是 PHP代码