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
Post a Comment