Warning: This function has been deprecated. Use _n_noop() instead.

__ngettext_noop()

Register plural strings in POT file, but don’t translate them.


Description Description

See also See also


Top ↑

Source Source

File: wp-includes/deprecated.php

function __ngettext_noop() {
	_deprecated_function( __FUNCTION__, '2.8.0', '_n_noop()' );
	$args = func_get_args();
	return call_user_func_array('_n_noop', $args);

}

Top ↑

Changelog Changelog

Changelog
Version Description
2.8.0 Use _n_noop()
2.5.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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