Wordpress: disable wptexturize globally -


i have wordpress page title "paper 10x10". in sidebar navigation page displayed "paper 10×10" (note x texturized wordpress , therefor x became multiplication sign ×).

i have plugin raw html plugin installed. disables wptexturizing the_content. navigation not in the_content in get_sidebar().

i tried remove_filter:

remove_filter('the_content', 'wptexturize'); remove_filter('the_excerpt', 'wptexturize'); 

but disables texturizing content or excerpt.

how can disable wptexturize filter globally in wordpress blog?

try:

remove_filter('the_title', 'wptexturize'); 

Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -