Changeset 55279 for trunk/src/wp-includes/l10n.php
- Timestamp:
- 02/07/2023 05:26:14 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/l10n.php
r55196 r55279 1810 1810 return $wp_locale->get_list_item_separator(); 1811 1811 } 1812 1813 /** 1814 * Retrieves the word count type based on the locale. 1815 * 1816 * @since 6.2.0 1817 * 1818 * @global WP_Locale $wp_locale WordPress date and time locale object. 1819 * 1820 * @return string Locale-specific word count type. 1821 */ 1822 function wp_get_word_count_type() { 1823 global $wp_locale; 1824 1825 return $wp_locale->get_word_count_type(); 1826 }
Note: See TracChangeset
for help on using the changeset viewer.