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

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

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -