no_texturize_tags WordPress Filter Hook

The no_texturize_tags hook can be used to prevent the WordPress texturize function from running on specific tags. This is useful for preventing unwanted formatting changes to code or other content that should not be altered.

apply_filters( 'no_texturize_tags', string[] $default_no_texturize_tags ) #

Filters the list of HTML elements not to texturize.


Parameters

$default_no_texturize_tags

(string[])An array of HTML element names.


Top ↑

More Information

  • The ‘no_texturize_tags‘ filter allows you to specify which HTML elements should not run through the wptexturize() function.
  • By default, WordPress will automatically texturize all post/page content. The texturize process replaces “normal” quotes with “fancy” quotes (aka “smart” quotes or “curly” quotes). Sometimes this is NOT what you want… particularly if your shortcode must contain raw, preprocessed text.

Top ↑

Source

File: wp-includes/formatting.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.8.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More