Skip to content

Instantly share code, notes, and snippets.

@femiyb
Last active April 22, 2020 13:18
Show Gist options
  • Save femiyb/e2128bb03ddfd62ae27da841c73cdaa8 to your computer and use it in GitHub Desktop.
Save femiyb/e2128bb03ddfd62ae27da841c73cdaa8 to your computer and use it in GitHub Desktop.
<?php
function my_pmpro_translate_mailchimp($translated_text, $original_text, $domain) {
switch ( $translated_text ) {
case 'Join our mailing list.' :
$translated_text = __( 'Your Changed Text Here', 'pmpro-mailchimp' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_pmpro_translate_mailchimp', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment