Skip to content

Instantly share code, notes, and snippets.

@zonay
Created January 29, 2020 12:57
Show Gist options
  • Save zonay/a79c4df338a5b80be8133ed6872d0655 to your computer and use it in GitHub Desktop.
Save zonay/a79c4df338a5b80be8133ed6872d0655 to your computer and use it in GitHub Desktop.
list all categories from custom post type? #cpt #wordpress
<?php
$args = array(
'taxonomy' => 'event_category',
'orderby' => 'name',
'order' => 'ASC'
);
$cats = get_categories($args);
foreach($cats as $cat) {
?>
<a href="<?php echo get_category_link( $cat->term_id ) ?>">
<?php echo $cat->name; ?>
</a>
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment