Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created February 6, 2015 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/83777e99b03b77baa499 to your computer and use it in GitHub Desktop.
Save tripflex/83777e99b03b77baa499 to your computer and use it in GitHub Desktop.
Job Category output on listing
<?php
$categories = get_the_terms( get_the_ID(), 'job_listing_category' );
foreach ( $categories as $category ){
echo $category->name;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment