run_wptexturize

run_wptexturize

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('run_wptexturize') is found 1 times:

  • /wp-includes/formatting.php line 78
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    * @see wptexturize()
     *
     * @param bool $run_texturize Whether to short-circuit wptexturize().
     */
    $run_texturize = apply_filters( 'run_wptexturize', $run_texturize );
    if ( false === $run_texturize ) {
        return $text;
    }
     
    /* translators: Opening curly double quote. */
    $opening_quote = _x( '“', 'opening curly double quote' );