Skip to content

Instantly share code, notes, and snippets.

@authentikHQ
Created October 29, 2018 02:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save authentikHQ/c05d5a838e692686a7568b36dfaf8b93 to your computer and use it in GitHub Desktop.
Save authentikHQ/c05d5a838e692686a7568b36dfaf8b93 to your computer and use it in GitHub Desktop.
Customize next page link in entry navigation with the Genesis Framework.
<?php
// Do NOT include the opening php tag.
// Customize next page link in entry navigation.
add_filter ( 'genesis_next_link_text' , 'athk_next_page_link' );
function athk_next_page_link ( $text ) {
return 'Next Page &raquo;';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment