ngettext

ngettext

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('ngettext') is found 1 times:

  • /wp-includes/l10n.php line 497
    	 * @param string $plural      The text to be used if the number is plural.
    	 * @param int    $number      The number to compare against to use either the singular or plural form.
    	 * @param string $domain      Text domain. Unique identifier for retrieving translated strings.
    	 */
    	$translation = apply_filters( 'ngettext', $translation, $single, $plural, $number, $domain );
    
    	/**
    	 * Filters the singular or plural form of a string for a domain.
    	 *
    	 * The dynamic portion of the hook name, `$domain`, refers to the text domain.
    	 *