ne pas modifier automatiquement le texte des articles wordpress

05/07/2016

add to functions.php

//Remove from Post Content
remove_filter('the_content', 'wptexturize');
//Remove from Post Title
remove_filter('the_title', 'wptexturize');
//Remove from Post Excerpt
remove_filter('the_excerpt', 'wptexturize');
//Remove from Post Comments
remove_filter('comment_text', 'wptexturize');

Raccourcis