Created
November 5, 2017 16:21
-
-
Save anwerashif/c13da6b164be66ccb72df5735cebd070 to your computer and use it in GitHub Desktop.
Modify Genesis Next & Previous Page Link Text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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