Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 14, 2013 12:29
Show Gist options
  • Save RhythmShahriar/6974871 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/6974871 to your computer and use it in GitHub Desktop.
<?php
/**-------------------------------------------
* @package Code Snippets
* @link http://rhythmshahriar.com/code/
* @author Rhythm <[email protected]>
* @copyright Copyright (c) 2013, Rhythm Shahriar
-------------------------------------------------*/
// Customize Next Previous Page Nav
add_filter('genesis_prev_link_text','rs_prev_page_text');
function rs_prev_page_text(){
$prevlink = 'Newer';
return $prevlink;
}
add_filter('genesis_next_link_text','rs_next_page_text');
function rs_next_page_text(){
$nextlink = 'Older';
return $nextlink;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment