0

我需要为帖子添加一些细节,所以我必须修改页面以添加/更新帖子

但我不知道我应该使用什么动作

我想添加两个选择框,管理员必须选择第一个字段,然后也选择第二个

例如字段是:

清单一、清单二、清单三、清单四

和子选择:

清单一:项目一、项目二、项目三、项目四

清单二:项目一、项目二、项目三、项目四

php代码:

// ============================== Add Province And City ...
add_action( 'add_meta_boxes', 'selectIranProvinceCity' );
add_action( 'save_post', 'iranProvinceCitySavePostData' );
function selectIranProvinceCity(){
    
    // require_once( 'iran_province_city.php' );
    
}
function iranProvinceCitySavePostData(){
    // Save Province And City
    $province = '';
    $city = '';
    if( isset( $_POST['state'] ) ) {
        $province = $_POST['state'];
    }
    if( isset( $_POST['city'] ) ) {
        $city = $_POST['city'];
    }
    $post_id = get_the_ID();
    if( !add_post_meta($post_id, 'province', $province, true ) ) {
        update_post_meta($post_id, 'province', $province, true );
    }
    if( !add_post_meta($post_id, 'city', $city, true ) ) {
        update_post_meta($post_id, 'city', $city, true );
    }
}
// ============================== Add Province And City .

但更新时没有保存值,$post_id始终为空

4

1 回答 1

6
add_action('init', 'update_all_templates_to_new');
function update_all_templates_to_new()
{
    $args = array(
        'posts_per_page'   => -1,
        'post_type'        => 'product',
        'suppress_filters' => true 
    );
    $posts_array = get_posts( $args );
    foreach($posts_array as $post_array)
    {
        update_post_meta($post_array->ID, '_use_new_product_template', '1');
    }
}
于 2016-09-17T07:06:12.587 回答