“Dapatkan Produk WooCommerce Harga” Kode Jawaban

Dapatkan Produk WooCommerce Harga

$product = wc_get_product( $post_id );

$product->get_regular_price();
$product->get_sale_price();
$product->get_price();
Xenophobic Xenomorph

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

Cara Mendapatkan Harga Produk WooCommerce

function so_30165014_price_shortcode_callback( $atts ) {
    $atts = shortcode_atts( array(
        'id' => null,
    ), $atts, 'bartag' );

    $html = '';

    if( intval( $atts['id'] ) > 0 && function_exists( 'wc_get_product' ) ){
         $_product = wc_get_product( $atts['id'] );
         $html = "price = " . $_product->get_price();
    }
    return $html;
}
add_shortcode( 'woocommerce_price', 'so_30165014_price_shortcode_callback' );
Fragile Fly

Jawaban yang mirip dengan “Dapatkan Produk WooCommerce Harga”

Pertanyaan yang mirip dengan “Dapatkan Produk WooCommerce Harga”

Lebih banyak jawaban terkait untuk “Dapatkan Produk WooCommerce Harga” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya