你可以参与行动the_post
(此处获取post as参数)并运行wp_update_post()
. 请确保清除日期属性,并且不要在管理端运行,也不要在小部件中调用帖子时运行:
is_admin() or add_action( \'the_post\', function( $post ) {
if ( ! is_singular() or ! is_main_query() )
return;
$post->post_date = current_time( \'mysql\' );
$post->post_date_gmt = \'\';
wp_update_post( $post );
});
But 现在,您可以对每个请求执行写入操作。这将减慢您的站点速度。我不会那么做的。