apply_filters( 'wp_sprintf', string $fragment, string $arg )

Filters a fragment from the pattern passed to wp_sprintf() .


Description

If the fragment is unchanged, then sprintf() will be run on the fragment.


Top ↑

Parameters

$fragment string
A fragment from the pattern.
$arg string
The argument.

Top ↑

Source

File: wp-includes/formatting.php. View all references

$_fragment = apply_filters( 'wp_sprintf', $fragment, $arg );


Top ↑

Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes

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