WordPress 原创插件:当日 24 小时发布文章标题变红

<?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');

 

© 版权声明
THE END
喜欢就支持一下吧
点赞6828我要打赏 分享
抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容