Skip to content

Instantly share code, notes, and snippets.

@arelthia
Created July 21, 2014 21:43
Show Gist options
  • Select an option

  • Save arelthia/7be3938ffe122ba6b3b8 to your computer and use it in GitHub Desktop.

Select an option

Save arelthia/7be3938ffe122ba6b3b8 to your computer and use it in GitHub Desktop.
Different Read More For Specific Category
//custom readmore for a specific category
add_filter( 'excerpt_more', 'pp_cat_more_link' );
function pp_cat_more_link() {
if(is_category('podcasts' )){
return ' <a class="more-link" href="' . get_permalink() . '">Listen Now</a>';
}else{
return ' <a class="more-link" href=' . get_permalink() . '">Read More...</a>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment