WordPress根据最后一次评论时间来决定是否显示评论者链接
WordPress . get_comment_time()
, . PHP:
<?php
//
$last_comment = get_comments(array(
'number' => 1,
'post_id' => get_the_ID(), // ID
));
// , (, 30 )
if ($last_comment && strtotime($last_comment[0]>comment_date) > strtotime('30 days')) {
//
echo '<a href="' . get_comment_author_url() . '">' . get_comment_author() . '</a>';
} else {
//
echo get_comment_author();
}
?>
, , 30 . , , . .
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
仍然有问题? 我们要如何帮助您?