插件介绍欢迎!我白天是个邮递员,晚上就是个有抱负的演员。这是我的网站。我住在天朝的帝都,有条叫做Jack的狗。
24小时内发布文章标题自动加红插件,效果如下,

代码如下:
<?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');
