Filter hook 'run_wptexturize'
in WP Core File wp-includes/formatting.php at line 78
Description
Filters whether to skip running wptexturize(). 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.
Occurrences
Filename |
Line Number |
wp-includes/formatting.php |
78 |
Parameters
Type |
Name |
Description |
bool |
$run_texturize |
Whether to short-circuit wptexturize(). |
PHP Doc
/**
* Filters whether to skip running wptexturize().
*
* 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.
*
* @since 4.0.0
*
* @see wptexturize()
*
* @param bool $run_texturize Whether to short-circuit wptexturize().
*/