WooCommerce REST API: как получить индивидуальную себестоимость с помощью API - PullRequest
0 голосов
/ 07 мая 2020

Я долгое время пытался получить пользовательские данные о продукте через api, но не могу.

У меня есть эта функция для добавления новых данных к продукту.

add_action( 'save_post', 'wc_cost_save_product' );
function wc_cost_save_product( $product_id ) {

 // stop the quick edit interferring as this will stop it saving properly, when a user uses quick 
 edit feature
 if (wp_verify_nonce($_POST['_inline_edit'], 'inlineeditnonce'))
    return;

// If this is a auto save do nothing, we only save when update button is clicked
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
    return;
if ( isset( $_POST['cost_price'] ) ) {
    if ( is_numeric( $_POST['cost_price'] ) )
        update_post_meta( $product_id, 'cost_price', $_POST['cost_price'] );
} else delete_post_meta( $product_id, 'cost_price' );
}

когда я получаю данные с помощью $ woocommerce-> get ('products / 794'))

Я тоже хочу получить 'cost_price'.

Возможно ли это ?

Спасибо

...