mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
10 lines
342 B
Text
10 lines
342 B
Text
function charitable_text_switcher( $translations, $text, $domain ) {
|
|
// Changes the "Donate" text in multiple places
|
|
if ( 0 === strpos( $domain, 'charitable' ) && $text == 'Donate' ) {
|
|
return __( 'YOUR TEXT HERE', 'charitable' );
|
|
}
|
|
|
|
return $translations;
|
|
}
|
|
|
|
add_filter( 'gettext', 'charitable_text_switcher', 10, 3 );
|