Load Product price shortcode

Enable the loading of a product price shortcode.

// Shortcode: [awdr_product_price]
add_shortcode('awdr_product_price', function() {
    global $product;
    ob_start();
    if (is_object($product) && method_exists($product, 'get_price_html')) {
        echo $product->get_price_html();
    }
    return ob_get_clean();
});

Last updated