我正在尝试插入user id
在创建custom post type
. 这是我的代码:
$my_post = array(
\'post_title\' => $orderRequestCode.\' - \' . $customerName,
\'post_content\' => $orderContent,
\'post_status\' => \'draft\',
\'post_author\' => $user_ID,
\'post_type\' => \'orders\'
);
wp_insert_post( $my_post);
我还获得了对用户的引用:
$user_ID = $user->ID;
但是,当我检查back-end
. 有人知道我错在哪里吗?