wpseek.com
WordPress开发者和主题制作者的搜索引擎
_n_noop › WordPress Function
Since2.5.0
已弃用n/a
› _n_noop ( $singular, $plural, $domain = null )
参数: (3) |
|
返回: |
|
定义在: |
|
文档: |
Registers plural strings in POT file, but does not translate them.
Used when you want to keep structures with translatable plural strings and use them later when the number is known. Example: $message = _n_noop( '%s post', '%s posts', 'text-domain' ); ... printf( translate_nooped_plural( $message, $count, 'text-domain' ), number_format_i18n( $count ) );