Created
May 30, 2015 00:41
-
-
Save guilhermemarconi/3476f0e93c7a112cc376 to your computer and use it in GitHub Desktop.
Verify product category in WooCommerce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( has_term( array( 'cat-slug-1', 'cat-slug-2' ), 'product_cat' ) ) { | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment