wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_get_list_item_separator › WordPress Function
Seit6.0.0
Veraltetn/v
› wp_get_list_item_separator ( Keine Parameter )
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Retrieves the list item separator based on the locale.
Ähnliche Funktionen: wp_get_split_term, wp_get_sitemap_providers, wp_get_theme_error, wp_get_split_terms, wp_get_sites
Quellcode
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(); }