WP_Locale::get_list_item_separator()publicWP 6.0.0

Retrieves the localized list item separator.

Method of the class: WP_Locale{}

No Hooks.

Return

String. Localized list item separator.

Usage

global $wp_locale;
$wp_locale->get_list_item_separator();

Changelog

Since 6.0.0 Introduced.

WP_Locale::get_list_item_separator() code WP 6.4.3

public function get_list_item_separator() {
	return $this->list_item_separator;
}