$post_data = array(
'post_title' => 'Заголовок',
'post_name' => 'test',
'post_content' => 'Здесь должен быть контент',
'post_status' => 'publish',
'post_author' => 1,
'post_type' => 'page',
);
$post_id = wp_insert_post( $post_data );
'post_name'=>'test',
) на наличие / существование страницы$page=get_page_by_path('test',OBJECT,'page');
$post_new = array(
'post_title' => 'Заголовок',
'post_name' => 'test',
'post_content' => 'Здесь должен быть контент',
'post_status' => 'publish',
'post_author' => 1,
'post_type' => 'page',
);
if(!$page){
$post_id=wp_insert_post(wp_slash($post_new));
}