$parentID, 'post_type' => 'topic' ) ); $add = 2; $order = count( $parent_item ); $order = $order + $add; // Create post object $post = array( 'post_title' => $section_title, 'post_parent' => $parentID, 'post_content' => '', 'post_type' => 'topic', 'post_status' => 'publish', 'menu_order' => $order ); wp_insert_post( $post, $wp_error = '' ); wp_safe_redirect( admin_url('admin.php?page=bbp-core') ); } } } new Create_Topic();