Minor fix here: I typed an apostrophe in the listing description and when I viewed it on the homepage it showed as \'
Hi Gourav, I also encounter this on my site. Here's the link. http://filipinosg.com/ad/room-for-rent-near-novena-mrt/
Please provide the following information listed below. Thread Link: Your Website URL: WordPress Username: WordPress Password: Send this information on our email at [email protected]
I've fixed this. Here's part of what I did. In the template_ad_new.php, I modified the following lines (starting at line 90) PHP: #$cc_post_title = $wpdb->escape(unserialize(base64_decode($posted['cc_title']))); $cc_post_title = unserialize(base64_decode($posted['cc_title'])); $cc_my_post = array( #'post_content' => $wpdb->escape(unserialize(base64_decode($posted['cc_description']))), 'post_content' => unserialize(base64_decode($posted['cc_description'])), Actually, I don't kow why we have to escape there when escaping is already done when we call wp_insert_post. There are additional changes I made but I think this is the main culprit.