Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Created September 11, 2015 06:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SiR-DanieL/09bc5e736b5d0ca1fabf to your computer and use it in GitHub Desktop.
Save SiR-DanieL/09bc5e736b5d0ca1fabf to your computer and use it in GitHub Desktop.
if ( is_product() ) {
echo 'Must have!';
} else if ( is_product_tag( array( 'tag1', 'tag2' ) ) ) {
echo 'Check these awesome products tagged "tag1" and "tag2"!';
} else if ( is_product_category() ) {
echo 'Don\'t you like the products in this category?';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment