文章最后更新时间:
根据以前某位不知名用户写的最新发布角标修改而来,无需修改子比主题文件即可实现,非图片角标,手搓的css背景
效果图
教程及代码
PHP代码放置于funtions.php
或func.php
我放在了 zibll-inc- funtions- funtions.php
PHP
//新文章发布角标
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="new-icon">NEW</div>';
}
}
return $title;
}
add_filter('the_title', 'add_new_label_to_post_title', 10, 2);
css代码放后台自定义代码
© 版权声明
THE END
暂无评论内容