Skip to content

Instantly share code, notes, and snippets.

@SirDarcanos
Created September 11, 2015 06:31
Show Gist options
  • Save SirDarcanos/09bc5e736b5d0ca1fabf to your computer and use it in GitHub Desktop.
Save SirDarcanos/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