wp_insert_postを実行すると2つ記事が投稿されてしまうので、解決策を模索しています。
// 投稿オブジェクトを作成
$my_post = array(
'post_title' => 'My post',
'post_content' => 'This is my post.',
'post_status' => 'publish',
);
// 投稿をデータベースへ追加
wp_insert_post( $my_post );
あなたの回答
tips
プレビュー