'forum', 'post_parent' => 0 ]; $query = new \WP_Query( $args ); $total = $query->found_posts; $add = 2; $order = $total + $add; // Insert the post $post_id = wp_insert_post( array( 'post_title' => $bbp_forum_title, 'post_parent' => 0, 'post_content' => '', 'post_type' => 'forum', 'post_status' => 'publish', 'post_author' => get_current_user_id(), 'menu_order' => $order, ) ); if ( is_wp_error( $post_id ) ) { wp_send_json_error( 'Failed to create the forum.' ); } // Return success wp_send_json_success( 'Forum created successfully.' ); }