Lego2012
12/14/2016 - 2:42 PM

Post Navigation

Post Navigation

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

<!-- Below is the code to customize the next page link: -->

//* Customize the next page link
add_filter ( 'genesis_next_link_text' , 'sp_next_page_link' );
function sp_next_page_link ( $text ) {
    return 'Custom Next Page Link &#x000BB;';
}

<!-- Below is the code to customize the previous page link: -->

//* Customize the previous page link
add_filter ( 'genesis_prev_link_text' , 'sp_previous_page_link' );
function sp_previous_page_link ( $text ) {
    return '&#x000AB; Custom Previous Page Link';
}