在主题目录 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);
文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/731.html文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/731.htmlWordPress子比主题侧边滚动条样式美化
使用方法只需在主题设置自定义CSS代码里面添加美化的css代码即可! 如果主题没有 自定义代码 那么在WordPress主题目录文件里找style.css文件或者在WordPress后台里找“外观—&...
子比主题美化-悬浮侧边栏增加私信站长按钮
代码<div style="text-align: center;line-height: 20px;padding: 6px"> <div style="font-size: 16...