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_texturizebool
Whether to short-circuit wptexturize() .

Source

$run_texturize = apply_filters( 'run_wptexturize', $run_texturize );

Changelog

VersionDescription
4.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.