子比主题美化-新发布文章列表角标

在主题目录 func.php 文件添加如下代码。

/*新文章发布角标 blog.zbiwl.com*/
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="zbfox_new_post_label">NEW</div>';
        }
    }
    return $title;
}
add_filter('the_title', 'add_zbfox_new_post_label', 10, 2);
© 版权声明
THE END
喜欢就支持一下吧
点赞1我要打赏 分享
抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容