Archive for the ‘Wordpress’ Category.

Word press changes apostrophe characters

 

I noticed that wordpress changed all the occurrence of apostrophes in my all posts.

 

I opened the source of page and i found all the apostrophes were changed to &#8216 surprisingly.

 

I had to modify wp-include/default-filters.php file to get my apostrophes working.

 

I had commented out following line.

 

#add_filter( ‘the_content’, ‘wptexturize’ );

 

after that it started working perfectly and i see apostrophes in source of page not &#8216.

 

Hurrey….