Skip to content

Instantly share code, notes, and snippets.

@mikemcalister
Created January 13, 2016 23:33
Show Gist options
  • Select an option

  • Save mikemcalister/42dd0635d8d5fb068abe to your computer and use it in GitHub Desktop.

Select an option

Save mikemcalister/42dd0635d8d5fb068abe to your computer and use it in GitHub Desktop.
/*
* Change the Infinite Scroll button text
*/
function theme_infinite_scroll_button_text( $js_settings ) {
$js_settings['text'] = esc_html__( 'Load more', 'theme' );
return $js_settings;
}
add_filter( 'infinite_scroll_js_settings', 'theme_infinite_scroll_button_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment