Answers for "wp wc add to cart button with product id"

0

wp wc add to cart button with product id

$product_object = wc_get_product( $product_id );
echo '<a href="' . esc_url( $product_object->add_to_cart_url() ) . '" class="buy-now button">' . esc_html__( 'Buy Now', 'text-domain' ) . '</a>';
Posted by: Guest on June-23-2021

Code answers related to "wp wc add to cart button with product id"

Browse Popular Code Answers by Language