<?php
// To get the price of a random product we will need to know the ID
$product_id=101;
$price = get_post_meta( $product_id, 'product_price', true );
echo $price
?>
// To get the price of a random product we will need to know the ID
$product_id=101;
$price = get_post_meta( $product_id, 'product_price', true );
echo $price
?>
No comments :
Post a Comment