Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ameeker/289964488228a352e015a9768ac58215 to your computer and use it in GitHub Desktop.
Save ameeker/289964488228a352e015a9768ac58215 to your computer and use it in GitHub Desktop.
Custom Taxonomy Term conditionals
<?php if (has_term (‘gardening’, ‘topics’)) : ?>
<p>This is the text to describe gardening</p>
<?php elseif (has_term(‘cooking,’ topics')) : ?>
<p>This is the text to describe cooking</p>
<?php else : ?>
<p>This is some generic text to describe all other taxonomy term pages, I could be left blank</p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment