Horje
add_to_cart how to call it woocommerce Code Example
add_to_cart how to call it woocommerce
add_action( 'template_redirect', 'quadlayers_add_to_cart_function' );

function quadlayers_add_to_cart_function () {

    $product_id = 1326;

    if ( WC()->cart->get_cart_contents_count() == 0 ) {

        WC()->cart->add_to_cart( $product_id );

    }

}




C

Related
c read file into string Code Example c read file into string Code Example
curl cpp Code Example curl cpp Code Example
volatile keyword in c Code Example volatile keyword in c Code Example
time random c Code Example time random c Code Example
how to compile and run a program in c Code Example how to compile and run a program in c Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9