php 批量更新WP帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 批量更新WP帖子相关的知识,希望对你有一定的参考价值。
<?php
/*
Plugin Name: Bulk Updater
Description: This is not just a plugin, it's <em>CODE</em>..
Author:
*/
//add_action('init','KF_update_all_posts');
function KF_update_all_posts(){
$my_posts = get_posts( array('post_type' => 'catalog', 'numberposts' => -1 ) );
foreach ( $my_posts as $my_post ):
$post_id = $my_post->ID;
$value = 'P-' . $post_id;
if(!get_field('product_sku', $post_id)){
update_field('product_sku', $value, $post_id);
}
wp_update_post( $my_post );
endforeach;
}
以上是关于php 批量更新WP帖子的主要内容,如果未能解决你的问题,请参考以下文章
php PHP为每位作者的WP总帖子提供支持
php 从WP查询中排除当前帖子
php 插件WP热门帖子
php 禁用帖子菜单wp
php 使用WP状态自定义帖子类型。
PHP 仅搜索WP帖子