Skip to content

Instantly share code, notes, and snippets.

@ivandoric
Created April 30, 2014 17:44
Show Gist options
  • Save ivandoric/11433556 to your computer and use it in GitHub Desktop.
Save ivandoric/11433556 to your computer and use it in GitHub Desktop.
wordpress: add class to prev/next posts links
//NEXT/PREV BLOG PAGE LINKS
add_filter('next_posts_link_attributes', 'posts_link_attributes_1');
add_filter('previous_posts_link_attributes', 'posts_link_attributes_2');
function posts_link_attributes_1() {
return 'class="next btn-gray"';
}
function posts_link_attributes_2() {
return 'class="prev btn-gray"';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment