Created
April 30, 2025 15:01
-
-
Save propertyhive/df55acae7b3f528762f44c7fba3d1063 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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