文章最后更新时间:
前言
一款非常美观又实用的新发布文章列表角标,每个新发布的文章都会自动添加,用来提醒用户这篇文章是今日新发布的,有利于用户交互。
效果

教程
func.php代码
/*新文章发布角标 */
function add_zbfox_new_post_label($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-570b98-0 tuc-c602702c-570b98-0 zbfox_new_post_label tuc-c602702c-570b98-0 tuc-c602702c-570b98-0">NEW</div>';
}
}
return $title;
}
add_filter('the_title', 'add_zbfox_new_post_label', 10, 2);
css代码
© 版权声明
© 版权声明 All Rights Reserved
THE END








- 最新
- 最热
只看作者