Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save guilhermemarconi/3476f0e93c7a112cc376 to your computer and use it in GitHub Desktop.
Save guilhermemarconi/3476f0e93c7a112cc376 to your computer and use it in GitHub Desktop.
Verify product category in WooCommerce
<?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