Created
November 29, 2012 16:21
-
-
Save jeremyclark13/4170117 to your computer and use it in GitHub Desktop.
Jetpack Infinite Scroll replace credit link on footer
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
| add_filter( 'infinite_scroll_credit', 'your_footer_text' ); | |
| function your_footer_text() { | |
| return '<a href="http://link_to_site">Credit Link</a>'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment