Skip to content

Instantly share code, notes, and snippets.

@UnaiYecora
Forked from jeherve/functions.php
Last active August 29, 2015 14:02
Show Gist options
  • Save UnaiYecora/2e7d143d6ef81b5d8a78 to your computer and use it in GitHub Desktop.
Save UnaiYecora/2e7d143d6ef81b5d8a78 to your computer and use it in GitHub Desktop.
[Jetpack] Customize the contents of the "Older Posts" text appearing when activating Infinite Scroll.
<?php
function jeherve_custom_infinite_more() {
if ( is_home() || is_archive() || is_search() ) {
?>
<script type="text/javascript">
//<![CDATA[
infiniteScroll.settings.text = "Custom Text";
//]]>
</script>
<?php }
}
add_action( 'wp_footer', 'jeherve_custom_infinite_more', 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment