Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/df55acae7b3f528762f44c7fba3d1063 to your computer and use it in GitHub Desktop.
Save propertyhive/df55acae7b3f528762f44c7fba3d1063 to your computer and use it in GitHub Desktop.
add_filter( 'gettext', 'propertyhive_book_viewing_label', 99, 3 );
function propertyhive_book_viewing_label( $translated_text, $text, $domain ) {
switch ( $translated_text )
{
case 'Book Viewing' :
{
$translated_text = 'My Viewing Button label Here';
break;
}
}
return $translated_text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment