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 />"; }