NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
``` //display a message on older posts function so_older_post_message () { $posted = get_the_time('U'); $current = current_time('timestamp'); //Convert difference in seconds to days $diffTime = ($current - $posted) / (60*60*24); if($diffTime > 365) { echo '<div class=older-post-message>' . __('This post was written more than a year ago and <em>might</em> not be entirely accurate anymore.', 'wptips') . '</div><br />'; } } add_action('get_template_part_content','so_older_post_message'); ```