用PHP创建一个wordpress帖子

时间:2018-01-31 01:52:41

标签: php wordpress

我遇到问题,我可以使用PHP代码在我的WordPress博客中创建一个新帖子:

$new_post = array(
    'post_title' => $leadTitle,
    'post_content' => $leadContent,
    'post_status' => $postStatus,
    'post_date' => $timeStamp,
    'post_author' => $userID,
    'post_type' => $postType,
    'post_category' => array($categoryID),
    'tags_input' => array($tags)
    );

$post_id = wp_insert_post($new_post);

我的问题是,只要post_content中包含HTML代码,它就不会包含在帖子中。

如何在post_content

中添加iframe代码

1 个答案:

答案 0 :(得分:2)

改为使用iframe shortcode

[iframe src=”http://www.youtube.com/embed/4qsGTXLnmKs” width=”100%” height=”500″]
  

由于安全原因,WordPress会删除iframe html标记。   iframe短代码是iframe html标签的替代品,并接受与iframe html标签相同的参数。