我正在尝试使用此代码插入帖子:
$my_post = array(
'post_type' => "essays",
'post_title' => 'TEST 3',
//'post_content' => $content,
'post_status' => 'draft',
'post_author' => 1,
//'post_category' => $cat,
'tags_input' => 'TQM,tag',
);
$post_id = wp_insert_post($my_post);
Run Code Online (Sandbox Code Playgroud)
除了标签之外,Everythings工作正常,它不会插入任何标签.任何的想法?