Created
March 13, 2014 05:35
-
-
Save idavinder/9522396 to your computer and use it in GitHub Desktop.
Arrows for next previous text links in Genesis Theme
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
//* Arrow for previous navigation links - basicwp.com | |
add_filter ( 'genesis_prev_link_text' , 'basicwp_prev_older_links_text' ); | |
function basicwp_prev_older_links_text ( $text ) { | |
return '«'; | |
} | |
//* Arrow for next navigation links - basicwp.com | |
add_filter ( 'genesis_next_link_text' , 'basicwp_next_newer_links_text' ); | |
function basicwp_next_newer_links_text ( $text ) { | |
return '»'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment