第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

WooCommerce 更新所有變體(以編程方式)

WooCommerce 更新所有變體(以編程方式)

PHP
Helenr 2023-04-15 20:18:39
我正在嘗試在所有產(chǎn)品的每個(gè)變體下更新 WooCommerce 中的自定義字段。我獲得了適用于簡單產(chǎn)品的代碼,但無法遍歷變體并更新它們。我在 Stackoverflow 上嘗試了幾乎所有 WooCommerce 變體循環(huán),但它們都返回錯(cuò)誤或根本不起作用。任何建議將不勝感激。functions.php 中用于簡單產(chǎn)品的當(dāng)前代碼。add_action('init', 'bulk_update_post_meta_data');    function bulk_update_post_meta_data() {        $args = array(        'posts_per_page' => -1,        'post_type' => 'product',        'suppress_filters' => true        );        $posts_array = get_posts( $args );        foreach($posts_array as $post_array) {        $Cogcost = get_post_meta( $post_array->ID, '_regular_price', true );            update_post_meta($post_array->ID, '_wc_cog_cost', $Cogcost);        }    }
查看完整描述

1 回答

?
12345678_0001

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超5個(gè)贊

add_action( 'init', 'bulk_update_post_meta_data' );


function bulk_update_post_meta_data() {

    $args = array(

        'posts_per_page'     => -1,

        'post_type'          => 'product_variation',

        'suppress_filters'   => true

    );


    $posts_array = get_posts( $args );


    foreach ( $posts_array as $post_array ) {

        $Cogcost = get_post_meta( $post_array->ID, '_regular_price', true );


        update_post_meta( $post_array->ID, '_wc_cog_cost', $Cogcost );

    }

}

這將獲得所有變化。


查看完整回答
反對(duì) 回復(fù) 2023-04-15
  • 1 回答
  • 0 關(guān)注
  • 115 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)