给WordPress加个评论关闭时间提示 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

给WordPress加个评论关闭时间提示 – WordPress 教程
WordPress

为了阻止垃圾评论,我们可以进入WP后台 → 设置 → 讨论,在讨论设置面勾选“自动关闭发布 14天后的文章上的评论”,让之前较早发表的文章自动关闭评论。

如果再给读者用户一个什么时候关闭评论的时间提示,是不是更加人性化。

将下面的代码添加到当前主题functions.php文件中:

function topic_closes_in() {    global $post;    if ($post->comment_status == 'open') {        $close_comments_days_old = get_option( 'close_comments_days_old' );        $expires = strtotime( "{$post->post_date_gmt} GMT" ) +  $close_comments_days_old * DAY_IN_SECONDS;        printf( '提示:本文评论将于%s后自动关闭!',  human_time_diff( $expires ));    }}

调用函数

<?php topic_closes_in(); ?>

添加到主题评论模板comments.php的适当位置即可。

给WordPress加个评论关闭时间提示 – WordPress 教程

另外,这个自动关闭评论函数 human_time_diff 保存在 wp-includes/formatting.php文件中。

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: