apply_filters( “gettext_with_context_{$domain}”, string $translation, string $text, string $context, string $domain )

In this article

Filters text with its translation based on context information for a domain.

Description

The dynamic portion of the hook name, $domain, refers to the text domain.

Parameters

$translationstring
Translated text.
$textstring
Text to translate.
$contextstring
Context information for the translators.
$domainstring
Text domain. Unique identifier for retrieving translated strings.

Source

$translation = apply_filters( "gettext_with_context_{$domain}", $translation, $text, $context, $domain );

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.