Created
December 5, 2024 12:12
-
-
Save abdulawal39/da5d19c4be8fc7e19218459bb947c684 to your computer and use it in GitHub Desktop.
Revisions
-
abdulawal39 created this gist
Dec 5, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ function tncsupport_change_categories_label($translated_text, $text, $domain) { if ($text === 'Categories' && $domain === 'display-pdf-viewer-for-wordpress-addon') { return 'Custom Text'; // Replace this with the desired text. } return $translated_text; } add_filter('gettext', 'tncsupport_change_categories_label', 10, 3);