Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@thanh4890
Created March 28, 2016 01:17
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 thanh4890/6233de3e01b262a41fa3 to your computer and use it in GitHub Desktop.
Save thanh4890/6233de3e01b262a41fa3 to your computer and use it in GitHub Desktop.

In your theme directory open this file: templates/loop-blog.php

Find the line 40, it looks like:

<a class="entry-categories" href="<?php echo esc_url( get_category_link( $first_cat->term_id ) ); ?>"><?php echo esc_html( $first_cat->name ); ?></a>

Replace it by:

<a class="entry-categories category-<?php echo $first_cat->term_id; ?>" href="<?php echo esc_url( get_category_link( $first_cat->term_id ) ); ?>"><?php echo esc_html( $first_cat->name ); ?></a>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment