Answers for "check it is product single woocommerce"

1

is product category woocommerce

if( is_product_category() ) {
	// yay, we are on a product category page!
} else {
 
}
Posted by: Guest on October-30-2020
1

is product page woocommerce

if( is_product() ) {
	// do something
} else {
 
}
Posted by: Guest on October-14-2021

Code answers related to "check it is product single woocommerce"

Browse Popular Code Answers by Language