WordPress list all category from custom post type
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
$args = array(
'type' => 'nchr_report',
'orderby' => 'name',
'order' => 'DESC',
'hierarchical' => 1,
'pad_counts' => false
);
$categories = get_categories($args);
foreach( $categories as $category ) {
echo $category->name;
}
?>