“WooCommerce Dapatkan ID Produk” Kode Jawaban

Dapatkan Harga Produk WooCommerce dari ID tertentu

$product = wc_get_product( $post_id );

$product->get_regular_price();
$product->get_sale_price();
$product->get_price();
Shubham Rathod

WooCommerce Dapatkan ID Produk

global $product;
$product->get_id();
Tyler Johnson

WooCommerce Dapatkan Nama Kategori Produk dengan ID

$id = 42;
if( $term = get_term_by( 'id', $id, 'product_cat' ) ){
    echo $term->name;
}
Weary Wildebeest

WooCommerce Dapatkan Kategori Produk

$terms = get_the_terms( $product_id, 'product_cat' );
foreach ($terms as $term) {
    $product_cat_id[] = $term->term_id;
}
Shiny Snake

Jawaban yang mirip dengan “WooCommerce Dapatkan ID Produk”

Pertanyaan yang mirip dengan “WooCommerce Dapatkan ID Produk”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya