Search code examples
phpwordpresscustom-post-typecategories

How to display all available custom post categories in WordPress?


How to display all categories of a custom post type on home screen without listing the items.

I already created the custom post type and it's categories, now I need to display all the categories on my home page as links to the each category page. Can someone help please?


Solution

  • <?php
                $terms = get_terms( 'taxonamy_name', array(
                    'orderby'    => 'count',
                    'hide_empty' => 0
                ) );
                    foreach($terms as $term)
                    {
                    echo $term->name;
                    }?>
                </ul>
            </div>