Skip to content

Instantly share code, notes, and snippets.

@ahmedmusawir
Created June 28, 2015 04:45
Show Gist options
  • Select an option

  • Save ahmedmusawir/48b79a661ebb3bab7cc6 to your computer and use it in GitHub Desktop.

Select an option

Save ahmedmusawir/48b79a661ebb3bab7cc6 to your computer and use it in GitHub Desktop.
WP Get Category
<?php
$categories = get_the_category();
$separator = ' ';
$output = '';
if($categories){
foreach($categories as $category) {
$output .= '<a href="'.get_category_link( $category->term_id ).'" title="' . esc_attr( sprintf( __( "View all posts in %s" ), $category->name ) ) . '">'.$category->cat_name.'</a>'.$separator;
}
echo trim($output, $separator);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment