我正在使用以下代码插入自定义帖子类型:
if(isset($_POST['submit'])){
$post_id = wp_insert_post( array(
'post_status' => 'publish',
'post_type' => 'custom_type',
'post_title' => 'Some post',
'post_content' => 'Lorem ipsum'
) );
}
我收到错误页面;标题:“WordPress 失败通知”和页面中的文字“您确定要这样做吗?
请再试一次。”
但是当我尝试插入 post_type: post 时,一切正常。当我尝试在没有 isset 的情况下插入时,一切正常;
$post_id = wp_insert_post( array(
'post_status' => 'publish',
'post_type' => 'custom_type',
'post_title' => 'Some post',
'post_content' => 'Lorem ipsum'
) );
有人有同样的问题吗?