Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. add_filter( 'gettext', 'change_featured_to_case_study', 20, 3 );
  2. function change_featured_to_case_study( $translated_text, $text, $domain )
  3. {
  4. if ( $translated_text == 'Featured' )
  5. {
  6. return 'Case Study';
  7. }
  8.  
  9. return $translated_text;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement