文章最后更新时间:
截图看效果红色标签
代码
//新文章发布角标
function add_new_label_to_post_title($title, $id) {
if (!is_admin() && !is_single()) {
$post_time = get_the_time('U', $id);
if (time() - $post_time <= 24 * 60 * 60) {
$title .= ' <div class="tuc-c602702c-5af06e-0 tianyishangke-new-icon tuc-c602702c-5af06e-0">NEW</div>';
}
}
return $title;
}
add_filter('the_title', 'add_new_label_to_post_title', 10, 2);
© 版权声明
© 版权声明 All Rights Reserved
THE END







暂无评论内容