
折腾了两年的Wordpress,不准备再折腾了,把我所收集和使用的Wordpress代码做个总结吧!
取消Wordpress转义
Function代码
//取消内容转义,by www.yuweiji.com
remove_filter('the_content', 'wptexturize');
//取消摘要转义,by www.yuweiji.com
remove_filter('the_excerpt', 'wptexturize');
//取消评论转义,by www.yuweiji.com
remove_filter('comment_text', 'wptexturize');
