Skip to content

Instantly share code, notes, and snippets.

@lelandsmith
Created March 11, 2014 23:38
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 lelandsmith/9497451 to your computer and use it in GitHub Desktop.
Save lelandsmith/9497451 to your computer and use it in GitHub Desktop.
WP:Get the Categories
<?php $category = get_the_category();
if($category[0]){
echo '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>';
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment