Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: gettext_with_context_{$domain}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
270       * The dynamic portion of the hook name, `$domain`, refers to the text domain.
271       *
272       * @since 5.5.0
273       *
274       * @param string $translation Translated text.
275       * @param string $text        Text to translate.
276       * @param string $context     Context information for the translators.
277       * @param string $domain      Text domain. Unique identifier for retrieving translated strings.
278       */
279      $translation = apply_filters( "gettext_with_context_{$domain}", $translation, $text, $context, $domain );
280
281      return $translation;
282 }
283
284 /**
285  * Retrieve the translation of $text.
286  *
287  * If there is no translation, or the text domain isn't loaded, the original text is returned.
288  *