第一:使用get_posts
或WP_Query
.
$query_posts = new WP_Query( array(
\'nopaging\' => true,
) );
第二:为帖子和使用做循环
wp_update_post()
对于每个post和set ID参数。
while ( $query_posts->have_posts() ) :
$query_posts->the_post();
wp_update_post( array(
\'ID\' => get_the_ID(),
\'post_content\' => get_the_content(),
) );
endwhile;
将此代码置于初始化操作或页眉/页脚。更新页面一次并删除代码。将此代码放入
functions.php 您的所有帖子都将在页面重新加载时更新。
add_action( \'init\', function () {
$query_posts = new WP_Query( array(
\'nopaging\' => true,
) );
while ( $query_posts->have_posts() ) :
$query_posts->the_post();
wp_update_post( $post );
endwhile;
wp_reset_postdata();
} );