Created
July 21, 2014 21:43
-
-
Save arelthia/7be3938ffe122ba6b3b8 to your computer and use it in GitHub Desktop.
Different Read More For Specific Category
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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