Skip to content

Instantly share code, notes, and snippets.

@authentikHQ
Created October 29, 2018 02:10
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/284a442f661803e89c5e60172769a2dd to your computer and use it in GitHub Desktop.
Save authentikHQ/284a442f661803e89c5e60172769a2dd to your computer and use it in GitHub Desktop.
Customize previous page link in entry navigation with the Genesis Framework.
<?php
// Do NOT include the opening php tag.
// Customize previous page link in entry navigation.
add_filter ( 'genesis_prev_link_text' , 'athk_previous_page_link' );
function athk_previous_page_link ( $text ) {
return '&laquo; Previous Page';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment