WP CRUD API'S
A custom WordPress REST API plugin that performs full CRUD operations (Create, Read, Update, Delete) on a student database table.
by Hardik Parmar · github.com/hardikparmar2006/wordpress-crud-rest-api-plugin
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/hardikparmar2006/wordpress-crud-rest-api-plugin/archive/refs/heads/main.zipA custom WordPress REST API plugin that performs full CRUD operations (Create, Read, Update, Delete) on a student database table. 📌 Features
✅ Create student ✅ Get all students ✅ Update student ✅ Delete student ✅ Custom REST API routes ✅ Secure database operations using $wpdb ✅ Built as a WordPress plugin
🛠️ Tech Stack
WordPress PHP REST API MySQL $wpdb
🔗 API Endpoints
1.Create Student
POST /wp-json/students/v1/student
2.Get All Students
GET /wp-json/students/v1/student
3.Update Student
PUT /wp-json/students/v1/student/update?id=
4.Delete Student
DELETE /wp-json/students/v1/student/delete?id=