Are you looking for a way to display custom taxonomy tags outside the loop? While there’s probably a plugin for this, we have created a quick code snippet that you can use to display custom taxonomy tags outside the loop in WordPress.
Instructions:
All you have to do is add this code to your theme’s single.php file or in a site-specific plugin:
$terms = get_terms('terms','hide-empty=0&orderby=id');
shuffle($terms); // dlete this line if you don't want it random.
$sep = '';
foreach ( $terms as $term ) {
if( ++$count > 60 ) break; // number of tags here.
echo $sep . '<a href="'.get_term_link($term).'">'.$term->name.'</a>';
$sep = ', '; // Put your separator here.
}
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly copy / paste code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 7 best WordPress poll plugins and how to set up download tracking in WordPress with Google Analytics.
Comments Leave a Reply