Answers for "get product by name wordpress"

PHP
0

get product price wordpress

$product = wc_get_product( $post_id );
$product->get_regular_price();
$product->get_sale_price();
$product->get_price();
Posted by: Guest on August-17-2021
0

woocommerce get product category name by id

$id = 42;
if( $term = get_term_by( 'id', $id, 'product_cat' ) ){
    echo $term->name;
}
Posted by: Guest on December-27-2021

Code answers related to "get product by name wordpress"

Browse Popular Code Answers by Language