Last active
April 22, 2020 13:18
-
-
Save femiyb/e2128bb03ddfd62ae27da841c73cdaa8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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