wp_get_word_count_type()
Retrieves the word count type based on the locale.
Хуков нет.
Возвращает
Строку. Locale-specific word count type. Possible values are characters_excluding_spaces, characters_including_spaces, or words.
Использование
wp_get_word_count_type();
Заметки
- Global. WP_Locale. $wp_locale WordPress date and time locale object.
Список изменений
| С версии 6.2.0 | Введена. |
Код wp_get_word_count_type() wp get word count type WP 6.9
function wp_get_word_count_type() {
global $wp_locale;
if ( ! ( $wp_locale instanceof WP_Locale ) ) {
// Default value of WP_Locale::get_word_count_type().
return 'words';
}
return $wp_locale->get_word_count_type();
}