// 自動投稿をさせるコード require('../../../wp-blog-header.php'); $content = 'https://www.youtube.com/embed/' . $MovieId[0]; $post = array( 'post_author' => 1, // 作成者のユーザー ID。 'post_content' => $content, // 投稿の全文。 'post_status' => 'publish', // 公開ステータス。 'post_title' => $posttitle[0], // 投稿のタイトル。 ); $postid = wp_insert_post( $post );
まだ途中ですが、こんな感じに書いてみました。 ここまでのポイントとしては、wp-blog-header.phpをちゃんと読み込むことが挙げられます。