wp_get_list_item_separator

函数


wp_get_list_item_separator ( No parameters )
返回值
  • (string) Locale-specific list item separator.
定义位置
  • wp-includes/l10n.php
    , line 1771
引入
6.0.0
弃用

Retrieves the list item separator based on the locale.

function wp_get_list_item_separator() {
	global $wp_locale;

	return $wp_locale->get_list_item_separator();
}