__ngettext_noop

The timeline below displays how wordpress function __ngettext_noop has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.3

/**
 * Register plural strings in POT file, but don't translate them.
 *
 * @since 2.5.0
 * @deprecated 2.8.0 Use _n_noop()
 * @see _n_noop()
 */
function __ngettext_noop(...$args)
{
    // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore
    _deprecated_function(__FUNCTION__, '2.8.0', '_n_noop()');
    return _n_noop(...$args);
}

WordPress Version: 4.6

/**
 * Register plural strings in POT file, but don't translate them.
 *
 * @since 2.5.0
 * @deprecated 2.8.0 Use _n_noop()
 * @see _n_noop()
 */
function __ngettext_noop()
{
    _deprecated_function(__FUNCTION__, '2.8.0', '_n_noop()');
    $args = func_get_args();
    return call_user_func_array('_n_noop', $args);
}

WordPress Version: 4.4

/**
 * Register plural strings in POT file, but don't translate them.
 *
 * @since 2.5.0
 * @deprecated 2.8.0 Use _n_noop()
 * @see _n_noop()
 */
function __ngettext_noop()
{
    _deprecated_function(__FUNCTION__, '2.8', '_n_noop()');
    $args = func_get_args();
    return call_user_func_array('_n_noop', $args);
}

WordPress Version: 3.9

/**
 * Register plural strings in POT file, but don't translate them.
 *
 * @since 2.5.0
 * @deprecated 2.8.0
 * @deprecated Use _n_noop()
 * @see _n_noop()
 */
function __ngettext_noop()
{
    _deprecated_function(__FUNCTION__, '2.8', '_n_noop()');
    $args = func_get_args();
    return call_user_func_array('_n_noop', $args);
}

WordPress Version: 3.7

/**
 * Register plural strings in POT file, but don't translate them.
 *
 * @since 2.5
 * @deprecated 2.8.0
 * @deprecated Use _n_noop()
 * @see _n_noop()
 */
function __ngettext_noop()
{
    _deprecated_function(__FUNCTION__, '2.8', '_n_noop()');
    $args = func_get_args();
    return call_user_func_array('_n_noop', $args);
}