我在做迁移准备数据的WordPress和需要手动插入到wp_posts表。 在插入数据中,我使用mysql_real_escape_string但HTML属性被插入与附加\”例如:
#Original
<img src="imge.jpg" alt="abcde fghij">
#Inserted to wp_posts using mysql_real_escape_string
<img src="\"imge.jpg"\" alt="\"abcde fghij"\">
这是坏的,使图像不工作。 所以,我需要如何插入数据在WordPress的可以接受的方式来wp_posts.post_content帮助。