Advertisement
verygoodplugins

Untitled

Apr 20th, 2020
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function change_wpf_name( $translation, $text, $domain ) {
  2.  
  3.     if ( $domain == 'wp-fusion' ) {
  4.  
  5.         $translation = str_replace( 'WP Fusion', 'Automation', $translation );
  6.  
  7.     }
  8.  
  9.     return $translation;
  10.  
  11. }
  12.  
  13. add_filter( 'gettext', 'change_wpf_name', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement