Home › Forums › Pro Support › Change load more text › Reply To: Change load more text
August 8, 2016 at 3:12 pm
#496
Keymaster
WPSP Pro 0.4 has been released with this filter.
You can adjust the text like this now:
add_filter( 'wpsp_ajax_load_more','wpsp_change_load_more' );
function wpsp_change_load_more()
{
return 'Whatever';
}
Thanks!