ControlledChaos
4/12/2016 - 6:19 PM

Add classes to links generated by next_ & previous_posts_link.

Add classes to links generated by next_ & previous_posts_link.

<?php

// Class for each links

function ccd_posts_link_attributes_2() {
    return 'class="next-post"';
}

function ccd_posts_link_attributes_1() {
    return 'class="prev-post"';
}

add_filter( 'next_posts_link_attributes', 'ccd_posts_link_attributes_1' );
add_filter( 'previous_posts_link_attributes', 'ccd_posts_link_attributes_2' );

?>
<?php

// Single class for both links

function ccd_posts_link_attributes() {
    return 'class="next-prev-post"';
}

add_filter( 'next_posts_link_attributes', 'ccd_posts_link_attributes' );
add_filter( 'previous_posts_link_attributes', 'ccd_posts_link_attributes' );

?>

Next/Prev Link Classes

WordPress Snippets