通知WordPress中的旧邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通知WordPress中的旧邮件相关的知识,希望对你有一定的参考价值。

## Benefit
To notify visitors that the current post they are viewing is an old post. Suitable for Blog / Website that provide timely articles
  1. <?php
  2. // Put inside Post Loop
  3.  
  4. $time_defined_as_old = 60*60*24*365; // A Year
  5.  
  6. if((date('U')-get_the_time('U')) > $time_defined_as_old) {
  7. echo '<div class="notice"><strong>Notice</strong><br />This article is published more than one year ago. Information in this article might be irrelevant with current situation</div>';
  8. }
  9.  
  10. ?>

以上是关于通知WordPress中的旧邮件的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress:仅针对所有通知电子邮件更改###ADMIN_EMAIL###

杨泽业:给你的wordpress博客添加SMTP邮件服务,评论以后邮件通知

如何在 WordPress 中为致命错误处理程序 (WSoD) 设置通知电子邮件

删除某些 WooCommerce 电子邮件通知中的产品购买说明

php WordPress - 当管理员更改其电子邮件地址时,禁用确认通知

将变量从 WordPress PHP 传递到 JavaScript