matthijs166
11/21/2017 - 11:43 AM

Get catogorie list custom post type

wordpress get custom post type catogories


$tax_terms = get_terms($taxonomy, array('job_listing_category' => false));
foreach($tax_terms as $term_single) {
     echo $term_single->slug;
     echo $term_single->name;
     echo "<br />";
}