WooCommerce has lots of shortcodes but it doesn't have one to display pricing.

The code below will render the product price that's currently loaded OR if you pass the ID of a specific product.

<?php

add_shortcode( 'orb_wc_product_price', 'orb_custom_shortcode_wc_product_price' );

/**
 * Shortcode to display WooCommerce Product Price
 * [orb_wc_product_price]
 * Modified by Orbisius to auto-detect product ID if not passed.
 * Original code by Aashik P – a11n (@aashik) posted on WP org forums
 * @see https://wordpress.org/support/topic/product-price-shortcode/
 */
function orb_custom_shortcode_wc_product_price( $atts ) {
    if (!function_exists('wc_get_product') || !function_exists('get_queried_object_id')) {
        return '';
    }

    $atts = shortcode_atts( array(
        'id' => null
    ), $atts, 'orb_wc_product_price' );

    if (empty($atts['id'])) {
        $atts['id'] = get_queried_object_id();
    }

    if ( empty( $atts[ 'id' ] ) ) {
        return '';
    }

    $product = wc_get_product( $atts['id'] );

    if ( ! $product ) {
        return '';
    }

    $price = $product->get_price();
    $price_fmt = wc_price($price);
    $price_html = $price_fmt;

    // sometimes it shows an incorrect value
    // $price_html = return $product->get_price_html();

    return $price_html;
}

usage:

[orb_wc_product_price] or [orb_wc_product_price id=123]

Installation

To use this code it's highly recommended that you create a system plugin.

This is a plugin that's created in /wp-content/mu-plugins/ folder. It is automatically active.

If you use a WordPress child theme you can paste the code in the functions.php.

Skip the <?php of the code if you're appended to an existing php file.


Disclaimer: The content in this post is for educational purposes only. Always remember to take a backup before doing any of the suggested steps just to be on the safe side.
Referral Note: When you purchase through an referral link (if any) on this page, we may earn a commission.
If you're feeling thankful, you can buy me a coffee or a beer