EduardET

Primary Category Yoast 1

Dec 13th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. $category_index = 0;
  2. foreach( $post->post_categories as $category ) {
  3.     $category_index++;
  4.     $separator =  $category_index < count(  $post->post_categories ) ? ', ' : '';
  5.     echo '<a href="'. esc_url( $category['permalink'] ) .'" title="' . esc_attr( $category['label'] ) . '">' . esc_html( $category['label'] ) . '</a>' . $separator;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment