wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_get_list_item_separator › WordPress Function

Da6.0.0
Deprecaton/a
wp_get_list_item_separator ( Nessun parametro )
Ritorna:
  • (string) Locale-specific list item separator.
Definito a:
Codex:

Retrieves the list item separator based on the locale.



Sorgenti

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();
}