WP_Locale::get_word_count_type
Retrieves the localized word count type.
Method of the class: WP_Locale{}
No Hooks.
Returns
String. Localized word count type. Possible values are characters_excluding_spaces, characters_including_spaces, or words.
Usage
global $wp_locale; $wp_locale->get_word_count_type();
Changelog
| Since 6.2.0 | Introduced. |
WP_Locale::get_word_count_type() WP Locale::get word count type code WP 6.9.1
public function get_word_count_type() {
/*
* translators: If your word count is based on single characters (e.g. East Asian characters),
* enter 'characters_excluding_spaces' or 'characters_including_spaces'. Otherwise, enter 'words'.
* Do not translate into your own language.
*/
$word_count_type = is_null( $this->word_count_type ) ? _x( 'words', 'Word count type. Do not translate!' ) : $this->word_count_type;
// Check for valid types.
if ( 'characters_excluding_spaces' !== $word_count_type && 'characters_including_spaces' !== $word_count_type ) {
// Defaults to 'words'.
$word_count_type = 'words';
}
return $word_count_type;
}