Reference › Hooks apply_filters( 'run_wptexturize' , bool $run_texturize )
Since 4.0.0 Description Parameters Fired at Source History Filters whether to skip running wptexturize().
See also wptexturize() Replaces common plain text characters with formatted entities. Description Returning false from the filter will effectively short-circuit wptexturize() and return the original text passed to the function instead. The filter runs only once, the first time wptexturize() is called.
Parameters
$run_texturizebool Whether to short-circuit wptexturize(). Fired at · 1 wp-includes/formatting.php:78wptexturize() Source View on Trac ↗ View on GitHub ↗
72 * @since 4.0 .0 73 * 74 * @see wptexturize ( ) 75 * 76 * @param bool $run_texturize Whether to short- circuit wptexturize ( ) . 77 * / 78 $run_texturize = apply_filters ( 'run_wptexturize' , $run_texturize ) ; 79 if ( false === $run_texturize ) { 80 return $text ; 81 } 82 83 84 $opening_quote = _x ( '“' , 'opening curly double quote' ) ; History Introduced in 4.0.0 . Unchanged from 6.7.7 through 7.1.0.
6.7.7 6.8.8 6.9.7 7.0.4 7.1.0 Signature, return type and hooks compared across 5 parsed releases.
About this page Parsed data Generated from the wordpress-develop 6.8.8 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. Corrections Something wrong on this page? Report it and it gets fixed in the next regeneration.