我正在做一个适用于 wordpress 网站的 webapp。
直到昨天,一切都像魅力一样,但是从今天开始,当我将帖子保存在 wordpress db 上时,它现在无法正常工作......没有给我错误(php 错误或 wordpress 错误),而只是一个白页。
这是我的完整代码:(对于许多注释行和回声,我很抱歉,但我正在测试)
重要的部分:
// Create post object
$my_post = array(
'post_title' => $article_title,
'post_name' => $article_title,
'post_content' => $article_content,
'post_status' => 'pending',
'post_author' => 1
);
// Insert the post into the database
wp_insert_post($my_post, TRUE);// try first time
$post_status = "pending";
$post_type = "post";
$post_parent = "0";
$post_ID = (int) $wpdb->insert_id;
echo $post_ID; die;
昨天用一个简单的 wp_insert_post(my_post); 今天一切正常(当然我想我编辑了一些文件......或者我现在没有),没有更多的工作并且没有给我错误。
你怎么看 ?
谢谢你,真的!
编辑:问题是我没有插入 post_category 并且 wp 需要它!