一款非常美观又实用的新发布文章列表角标,每个新发布的文章都会自动添加,用来提醒用户这篇文章是今日新发布的,有利于用户交互
效果展示图如下
![图片[1]-新发布文章列表角标(NEW)–子比主题美化-零染收集BLOG](https://pan.xcsc1.cn/f/Jxfg/new.png)
代码部署
在主题目录 func.php 文件添加如下代码。
(func.php = functions.php)
文件路径:/wp-content/themes/zibll/functions.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="zbfox_new_post_label">NEW</div>';
}
}
return $title;
}
add_filter('the_title', 'add_zbfox_new_post_label', 10, 2);
CSS代码添加到子比主题后台设置->自定义代码->自定义CSS样式
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END







暂无评论内容