apply_filters( ‘wp_sprintf_l’, array $delimiters )

In this article

Filters the translated delimiters used by wp_sprintf_l() .

Description

Placeholders (%s) are included to assist translators and then removed before the array of strings reaches the filter.

Please note: Ampersands and entities should be avoided here.

Parameters

$delimitersarray
An array of translated delimiters.

Source

 * Placeholders (%s) are included to assist translators and then
 * removed before the array of strings reaches the filter.
 *
 * Please note: Ampersands and entities should be avoided here.
 *
 * @since 2.5.0
 *
 * @param array $delimiters An array of translated delimiters.
 */
$l = apply_filters(
	'wp_sprintf_l',

Changelog

VersionDescription
2.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.