Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Created November 5, 2017 16:21
Show Gist options
  • Save anwerashif/c13da6b164be66ccb72df5735cebd070 to your computer and use it in GitHub Desktop.
Save anwerashif/c13da6b164be66ccb72df5735cebd070 to your computer and use it in GitHub Desktop.
Modify Genesis Next & Previous Page Link Text
<?php
// Do NOT include the opening PHP tag
// Modify Genesis Next & Previous Page Link Text
add_filter( 'genesis_prev_link_text', 'modify_previous_link_text' );
function modify_previous_link_text($text) {
$text = '« Newer Entries';
return $text;
}
/**
* @author Brad Dalton
* @example http://wpsites.net/web-design/customize-genesis-next-previous-page-link-text/
* @copyright 2014 WP Sites
*/
add_filter( 'genesis_next_link_text', 'modify_next_link_text' );
function modify_next_link_text($text) {
$text = 'Older Entries »';
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment