Created
December 16, 2021 07:42
-
-
Save ipokkel/6a06efca7e7fd11ac54b3c5a6ae80e41 to your computer and use it in GitHub Desktop.
Example code for changing text for the Paid Memberships Pro plugin using the WordPress gettext filter hook.
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 | |
/** | |
* Change the text "Welcome, %s" to "Hello %s" for Paid Memberships Pro | |
* | |
* You can add this recipe to your site by creating a custom plugin | |
* or using the Code Snippets plugin available for free in the WordPress repository. | |
* Read this companion article for step-by-step directions on either method. | |
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
*/ | |
function my_pmpro_custom_text_strings_with_gettext( $translated_text, $original_text, $domain ) { | |
switch ( $domain ) { | |
case 'paid-memberships-pro': | |
switch ( $original_text ) { | |
case 'Welcome, %s': | |
$translated_text = 'Hello %s'; | |
break; | |
} | |
break; | |
} | |
return $translated_text; | |
} | |
add_filter( 'gettext', 'my_pmpro_custom_text_strings_with_gettext', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment