gpt4 book ai didi

wordpress - 更新所有 WordPress 帖子

转载 作者:行者123 更新时间:2023-12-03 07:18:48 24 4
gpt4 key购买 nike

我需要更新我的所有帖子。我使用批量上传进行商店,但在网页中帖子/产品不显示,当我点击更新时,帖子/产品就会显示。

我认为使用wordpress默认更新功能:

// Update post 37
$my_post = array();
$my_post['ID'] = 37;
$my_post['post_content'] = 'This is the updated content.';

// Update the post into the database
wp_update_post( $my_post );

但是如何获取数组中所有帖子的 ID?

最佳答案

在这里,您只需使用 foreach 循环浏览帖子即可。

/*
Plugin Name: Example
Description: This is not just a plugin, it's <em>CODE</em>..
Author:
*/
add_action('init','example_hide');

function example_hide(){

$my_posts = get_posts( array('post_type' => 'post', 'numberposts' => 10 ) );

foreach ( $my_posts as $my_post ):

$my_post['post_content'] = 'This is the updated content.';

wp_update_post( $my_post );

endforeach;
}

关于wordpress - 更新所有 WordPress 帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7917725/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com