Skip to content

Instantly share code, notes, and snippets.

@abdulawal39
Created December 5, 2024 12:12
Show Gist options
  • Select an option

  • Save abdulawal39/da5d19c4be8fc7e19218459bb947c684 to your computer and use it in GitHub Desktop.

Select an option

Save abdulawal39/da5d19c4be8fc7e19218459bb947c684 to your computer and use it in GitHub Desktop.

Revisions

  1. abdulawal39 created this gist Dec 5, 2024.
    7 changes: 7 additions & 0 deletions gistfile1.txt
    Original 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);