1. Customize the Next/Newer Page Link
//* Customize the previous page link add_filter ( 'genesis_prev_link_text' , 'dy_previous_page_link' ); function dy_previous_page_link ( $text ) { return '« Newer Posts'; }
2. Customize the Previous/Older Page Link
//* Customize the next page link add_filter ( 'genesis_next_link_text' , 'dy_next_page_link' ); function dy_next_page_link ( $text ) { return 'Older Posts »'; }
Thanks for this tip – how would one completely remove the pagination based on the above code as everything i have tried renders the code still visible.