LC
php
Back to Snippets

WordPress Custom Post Type Taxonomy

Get taxonomy terms for custom post types in WordPress.

wordpresscustom-post-typetaxonomy
php
      // Get taxonomy title for current custom post
function get_custom_post_taxonomy_title() {
    return strip_tags(
        get_the_term_list(get_the_ID(), 'our_product_cats', '', ', ')
    );
}