wordpress提示文章发布时间一年以上

下面的代码粘贴在你的single.php文件的循环内部。根据需要编辑的文本在第7行的 365

<?
$ageunix = get_the_time('U');
$days_old_in_seconds = ((time() - $ageunix));
$days_old = (($days_old_in_seconds/86400));
 
if ($days_old > 365) {
  echo '<div class="disclaimer">DISCLAIMER: this post is older than one year and may not be up to date with latest WordPress version.</div>'; 
} 
?>

发布日期:

所属分类: Wordpress 综合 标签:


没有相关文章!