wp_sprintf_l

wp_sprintf_l

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-5.0.3

apply_filters('wp_sprintf_l') is found 1 times:

  • /wp-includes/formatting.php line 4503
    	 * @since 2.5.0
    	 *
    	 * @param array $delimiters An array of translated delimiters.
    	 */
    	$l = apply_filters( 'wp_sprintf_l', array(
    		/* translators: used to join items in a list with more than 2 items */
    		'between'          => sprintf( __('%s, %s'), '', '' ),
    		/* translators: used to join last two items in a list with more than 2 times */
    		'between_last_two' => sprintf( __('%s, and %s'), '', '' ),
    		/* translators: used to join items in a list with only 2 items */
    		'between_only_two' => sprintf( __('%s and %s'), '', '' ),