Change Any Text

Add this to your active theme's functions.php file and adjust text need locations in code snippet below.


/* Change Text Site Wide */

function wpfi_change_text( $translated_text ) {
  if ( $translated_text == 'ORIGINAL TEXT' ) {
    $translated_text = 'NEW TEXT';
  }
  return $translated_text;
}
add_filter( 'gettext', 'wpfi_change_text', 20 );



Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article