run_wptexturize WordPress Filter Hook
The run_wptexturize hook is called after the content has been passed through the wptexturize filter.
apply_filters( 'run_wptexturize', bool $run_texturize ) #
Filters whether to skip running wptexturize().
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.
See also
Parameters
- $run_texturize
(bool)Whether to short-circuit wptexturize().
Source
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |