AI摘要
Panda

<?PHP
/*
Plugin Name: 当天文章标题变红
DescrIPtion: 使当天24小时内发布的文章标题变为红色
*/
// 添加自定义样式
function title_red_plugin_styles() {
$current_time = time();
$post_time = get_the_time('U');
$time_difference = $current_time - $post_time;
if ($time_difference < 86400) {
echo'<style>
.entry-title a,
.page-title {
color: red !important;
}
</style>';
}
}
add_action('wp_head', 'title_red_plugin_styles');
文章最后更新时间:2024-08-15 12:53:18若有错误或已失效,请在下方
留言。
© 版权声明
本网站部分文件及内容来自互联网,版权归原作者所有。转载需授权,侵权必究。部分内容受《网络出版服务管理规定》保护,未经许可禁止商业使用。
THE END








暂无评论内容