wpseek.com
WordPress开发者和主题制作者的搜索引擎



__ngettext › WordPress Function

Since1.2.0
已弃用2.8.0
__ngettext ( $args )
查看:
定义在:
文档:

Retrieve the plural or single form based on the amount.



源码

function __ngettext( ...$args ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore
	_deprecated_function( __FUNCTION__, '2.8.0', '_n()' );
	return _n( ...$args );
}