Skip to content

Instantly share code, notes, and snippets.

@fahidjavid
Created June 12, 2014 08:48
Show Gist options
  • Save fahidjavid/ce918ed30181f73265ca to your computer and use it in GitHub Desktop.
Save fahidjavid/ce918ed30181f73265ca to your computer and use it in GitHub Desktop.
Disable Fancy Characters.
remove_filter ('the_content', 'wpautop');
remove_filter ('single_post_title', 'wptexturize');
remove_filter ('bloginfo', 'wptexturize');
remove_filter ('wp_title', 'wptexturize');
remove_filter ('category_description', 'wptexturize');
remove_filter ('list_cats', 'wptexturize');
remove_filter ('comment_author', 'wptexturize');
remove_filter ('comment_text', 'wptexturize');
remove_filter ('the_title', 'wptexturize');
remove_filter ('the_content', 'wptexturize');
remove_filter ('the_excerpt', 'wptexturize');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment