Changeset 52929 for trunk/src/wp-includes/functions.php
- Timestamp:
- 03/13/2022 08:01:05 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r52832 r52929 8372 8372 return abs( (float) $expected - (float) $actual ) <= $precision; 8373 8373 } 8374 8375 /** 8376 * Retrieves the list item separator based on the locale. 8377 * 8378 * @since 6.0.0 8379 * 8380 * @global WP_Locale $wp_locale WordPress date and time locale object. 8381 * 8382 * @return string Locale specific list item separator. 8383 */ 8384 function wp_get_list_item_separator() { 8385 global $wp_locale; 8386 return $wp_locale->get_list_item_separator(); 8387 }
Note: See TracChangeset
for help on using the changeset viewer.