Skip to content

Instantly share code, notes, and snippets.

@juarezpaf
Created October 6, 2009 21:22
Show Gist options
  • Select an option

  • Save juarezpaf/203457 to your computer and use it in GitHub Desktop.

Select an option

Save juarezpaf/203457 to your computer and use it in GitHub Desktop.
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