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

概述简介

WordPress博客内,24小时内发布的文章,让标题变成红色格外显眼,插件代码道言直接分享在下方了!

截图预览

20240508231230885-oih3hk5qdafc6_1d3d0cccc28d446d889fffc468e3fb5e

插件代码

<?php

// 添加自定义样式
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
点赞38 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容