Answers for "woocommerce check if shop page"

PHP
-1

woocommerce check if shop page

add_action( 'template_redirect', 'check_if_shoppage' );

function check_if_shoppage() 
{
    if(is_shop())
	{
		echo '<script>console.log("On shop page");</script>';
	}
}
Posted by: Guest on March-28-2022

Code answers related to "woocommerce check if shop page"

Browse Popular Code Answers by Language