如何手动插入字符串的HTML代码中wp_posts表(how to manually insert

2019-10-23 19:47发布

我在做迁移准备数据的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帮助。

Answer 1:

你有没有试过用燎报价? 尝试这个..

<img src='imge.jpg' alt='abcde fghij'>


Answer 2:

保存数据的PDO的方式解决了这个问题。



Answer 3:


您需要使用此功能将图像内容等。

 // Create post object $my_post = array( 
'post_title' => '#Enter the title#',
'post_content' => '#Enter the Content#'
,'post_status' => 'publish',
'post_author' => 1
);
wp_insert_post( $my_post );
它不会添加任何切片或其他任何东西。

感谢您。



文章来源: how to manually insert string with html codes in wp_posts table