wp_insert_post始终返回空白页面(但是帖子已创建)

时间:2014-08-27 09:49:04

标签: wordpress

我尝试了很多方法在WP中使用wp_insert_post插入帖子,但我总是遇到同样的问题。 当我尝试插入帖子时,帖子被正确插入,但我获得了一个空白页面(页面已损坏)。 我使用的最后一个代码是:

// Create post object
global $user_ID;
$new_post = array(
'post_title' => 'My New Post',
'post_content' => 'Lorem ipsum dolor sit amet...',
'post_status' => 'future',
'post_date' => date('Y-m-d H:i:s'),
'post_author' => $user_ID,
'post_type' => 'post',
'post_category' => array(0)
);
$post_id = wp_insert_post($new_post);

1 个答案:

答案 0 :(得分:0)

这可能是WordPress“链接网址”问题。您只需选择文件URL选项即可在“链接URL”文本框中获取图像的链接。还有其他原因。但是,如果是“链接URL”问题,它可以很容易地解决。我按照以下博客来纠正链接URL问题

http://scriptcrunch.com/2016/03/wordpress-insert-post-blank-page-issue.html