是否有任何方法可以将所有自定义帖子类型状态从“发布”更改为草稿?
方案: 在这里,我需要运行一个脚本。 我的帖子类型是:property_listing 现在我需要制作所有帖子草稿然后执行我的自定义操作。
有可能吗?
答案 0 :(得分:0)
如果您拥有Cpanel或数据库访问权限,则可以在数据库面板中运行此查询。
update table wp_posts set status='draft' where post_type='property_listing'
否则,请使用此代码。(将其粘贴到主题function.php中)
add_action('init','change_mypost_status');
function change_mypost_status(){
$args = array(
'post_type' => 'property_listing',
'posts_per_page' => -1
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) {
echo '<ul>';
while ( $the_query->have_posts() ) {
$the_query->the_post();
$current_post = array(
'ID' => get_the_ID(),
'post_status' => 'draft'
);
// Update the post into the database
wp_update_post( $current_post );
}
wp_reset_postdata();
}
}