wp_insert_post () 함수를 사용하여 워드 프레스에 게시물을 삽입하고 있습니다.
meta_info 매개 변수가 사용되었지만 각 게시물에 일부 사용자 정의 필드를 삽입하고 설명서를 읽고 싶습니다.
$data = array(
'post_author' => 1,
'post_status' => 'publish',
'post_title' => $post->getTitle(),
'post_content' => $post->getContent(),
'post_category' => $post->getCategory(),
'tags_input' => $post->getTags(),
'meta_input' => array( "_test" => "testx1" )
);
$postID = wp_insert_post( $data );
게시물이 올바르게 삽입되고 태그도 삽입됩니다. 그러나 추가 된 사용자 정의 필드는 없습니다. add_post_meta () 를 사용 하여 추가 할 수 있지만 post를 삽입 한 후 데이터베이스에서 "testx1"을 검색하여 결과를 찾을 수 없기 때문에 meta_input 매개 변수가 사용되는 것을 알고 싶습니다 .