WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 78 | * @param string $domain Domain to retrieve the translated text |
| 79 | * @return string Translated text |
| 80 | */ |
| 81 | function translate_with_context( $text, $domain = 'default' ) { |
| 82 | return before_last_bar( translate( $text, $domain ) ); |
| 83 | } |
| 84 | |
| 85 | function translate_with_gettext_context( $text, $context, $domain = 'default' ) { |
| 86 | $translations = &get_translations_for_domain( $domain ); |
| 87 | return apply_filters( 'gettext_with_context', $translations->translate( $text, $context ), $text, $context, $domain ); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Retrieves the translation of $text. If there is no translation, or |
| 92 | * the domain isn't loaded the original text is returned. |
| 93 | * |
| 94 | * @see translate() An alias of translate() |
| 95 | * @since 2.1.0 |
| 96 | * |