Job Category output on listing
gistfile1.php
<?php
$categories = get_the_terms( get_the_ID(), 'job_listing_category' );
foreach ( $categories as $category ){
echo $category->name;
}
?>
<?php
$categories = get_the_terms( get_the_ID(), 'job_listing_category' );
foreach ( $categories as $category ){
echo $category->name;
}
?>
No comments yet.