wp_sprintf

wp_sprintf

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_sprintf') is found 1 times:

  • /wp-includes/formatting.php line 5268
    5264
    5265
    5266
    5267
    5268
    5269
    5270
    5271
    5272
    5273
    5274
    *
     * @param string $fragment A fragment from the pattern.
     * @param string $arg      The argument.
     */
    $_fragment = apply_filters( 'wp_sprintf', $fragment, $arg );
     
    if ( $_fragment !== $fragment ) {
        $fragment = $_fragment;
    } else {
        $fragment = sprintf( $fragment, (string) $arg );
    }