wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_get_list_item_separator › WordPress Function
Since6.0.0
Deprecatedn/a
› wp_get_list_item_separator ( No parameters )
| Returns: |
|
| Defined at: |
|
| Codex: |
Retrieves the list item separator based on the locale.
Related Functions: wp_get_split_term, wp_get_theme_error, wp_get_split_terms, wp_get_sitemap_providers, wp_get_sites
Source
function wp_get_list_item_separator() {
global $wp_locale;
if ( ! ( $wp_locale instanceof WP_Locale ) ) {
// Default value of WP_Locale::get_list_item_separator().
/* translators: Used between list items, there is a space after the comma. */
return __( ', ' );
}
return $wp_locale->get_list_item_separator();
}