Skip to content

Instantly share code, notes, and snippets.

@jeherve
Last active October 10, 2016 13:48
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jeherve/6177741 to your computer and use it in GitHub Desktop.
Save jeherve/6177741 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() ) {
?>
<script type="text/javascript">
//<![CDATA[
infiniteScroll.settings.text = "Custom Text";
//]]>
</script>
<?php }
}
add_action( 'wp_footer', 'jeherve_custom_infinite_more', 3 );
@UnaiYecora
Copy link

Thanks, I was looking for this! (:

@afgarcia86
Copy link

Big help thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment