Conditionally set post_content in wp_insert_post
I can’t help but think I am missing something but what seems like the obvious answer is to alter your $create_pages array: $create_pages = array( ‘one’ => ‘content for one’, ‘two’ => ‘content for two’, ‘three’ => ‘content for three’ ); foreach ($create_pages as $title => $content) { $add_pages = array( ‘post_title’ => $title, ‘post_content’ … Read more