Created
October 6, 2009 21:22
-
-
Save juarezpaf/203457 to your computer and use it in GitHub Desktop.
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
| function previous_posts_link_class($attr) { | |
| return 'class="previouspostslink"'; | |
| } | |
| add_filter('previous_posts_link_attributes','previous_posts_link_class',10,1); | |
| function next_posts_link_class($attr) { | |
| return 'class="nextpostslink"'; | |
| } | |
| add_filter('next_posts_link_attributes','next_posts_link_class',10,1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment