Why does WordPress render my quote marks as “smart quotes?” Then when you copy code from my blogs into a cms you have to change all the quotes back. Well here is a quick fix to not let WordPress make your quotes into “smart quotes.”

Go to “Appearance” tab in WordPress. Then click on “Editor.” Find your file function.php. At the end paste this line of code:

<?php
remove_filter(‘the_content’, ‘wptexturize’);
?>

Click here for more information.