On this page
wp_get_list_item_separator(): string
Retrieves the list item separator based on the locale.
Return
string Locale-specific list item separator.
Source
File: wp-includes/l10n.php. View all references
function wp_get_list_item_separator() {
global $wp_locale;
return $wp_locale->get_list_item_separator();
}
Related
Uses
| Uses | Description |
|---|---|
| WP_Locale::get_list_item_separator() wp-includes/class-wp-locale.php | Retrieves the localized list item separator. |
Used By
| Used By | Description |
|---|---|
| WP_Posts_List_Table::column_default() wp-admin/includes/class-wp-posts-list-table.php | Handles the default column output. |
| WP_Media_List_Table::column_default() wp-admin/includes/class-wp-media-list-table.php | Handles output for the default column. |
| WP_Theme::markup_header() wp-includes/class-wp-theme.php | Marks up a theme header. |
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_get_list_item_separator