gettext WordPress Filter Hook

The Gettext WordPress hook is a powerful tool for translation and localization. It allows developers to easily translate their WordPress themes and plugins into multiple languages. Gettext is a free and open source software that is widely used by WordPress developers. This hook is available in WordPress versions 4.7 and above.

apply_filters( 'gettext', string $translation, string $text, string $domain ) #

Filters text with its translation.


Parameters

$translation

(string)Translated text.

$text

(string)Text to translate.

$domain

(string)Text domain. Unique identifier for retrieving translated strings.


Top ↑

More Information

This filter hook is applied to the translated text by the internationalization functions (__(), _e(), etc.).

IMPORTANT: This filter is always applied even if internationalization is not in effect, and if the text domain has not been loaded. If there are functions hooked to this filter, they will always run. This could lead to a performance problem.

For singular/plural aware translation functions such as _n(), see ngettext().

For context-specific translation functions such as _x(), see filter hook gettext_with_context() and ngettext_with_context().


Top ↑

Source

File: wp-includes/l10n.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.0.11Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.