wp_get_list_item_separator() WordPress Function

The wp_get_list_item_separator() function is used to return the list item separator for a given list type. The list type is specified by the 'type' argument.

wp_get_list_item_separator() #

Retrieves the list item separator based on the locale.


Return

(string) Locale-specific list item separator.


Top ↑

Source

File: wp-includes/l10n.php

function wp_get_list_item_separator() {
	global $wp_locale;

	return $wp_locale->get_list_item_separator();
}


Top ↑

Changelog

Changelog
VersionDescription
6.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.