__ngettext

函数
__ngettext ( $args )
相关
  • _n()
定义位置
相关方法
__ngettext_noopwp_get_httpget_the_excerptget_termget_site
引入
1.2.0
弃用
2.8.0

__ngettext: 这是一个用于翻译复数字符串的函数。它接收一个单数和复数的字符串,以及一个数字。如果数字是1,它返回单数字符串,如果数字是其他,它返回复数字符串。

根据金额检索复数或单数形式。

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

常见问题

FAQs
查看更多 >