- Overview
- Transcript
1.1 Introduction
The WordPress REST API is a new addition to the WordPress core, and it changes the way we interact with WordPress. In this lesson, I'll give you a brief explanation of the WP REST API and let you know what you can expect from this course.
1.Introduction1 lesson, 01:17
1.1Introduction01:17
2.How REST APIs Work3 lessons, 15:33
2.1HTTP Methods and Response Codes04:34
2.2Routes and Endpoints03:43
2.3JSON07:16
3.Set Up the Environment2 lessons, 08:22
3.1Set Up a Local WordPress Install04:16
3.2Installing the HTTP Client Postman04:06
4.Exploring the WordPress REST API4 lessons, 21:43
4.1The Index Route05:59
4.2OPTIONS Requests03:26
4.3Retrieve Data With GET Requests05:28
4.4Create, Update, and Delete Data06:50
5.The WordPress REST API in Action2 lessons, 16:47
5.1Retrieve Data With jQuery08:02
5.2Create Data With the WP REST API and jQuery08:45
6.Conclusion1 lesson, 00:59
6.1Conclusion00:59
1.1 Introduction
The WordPress REST API allows us to use WordPress without being in WordPress. It uses the REST architecture for implementing the API that allows us to create, read, update, and delete data from a WordPress site. So if you are a web developer using any server side language or using any JavaScript MVC, you can create custom web applications that run on WordPress backend by iterating the WP REST API. And of course this is not just limited to the web. You could create desktop and mobile apps that work with the data from a WordPress site and provide rich experience to the end user. The possibilities here are endless. Hi, my name is Bilal Shahid and in this introductory course for the WP REST API, we will look at the functionality and possibilities that the WP REST API offers. We will learn to navigate the API and learn to perform CRUD operations on resources including posts, users, and media. And at the end of this course, we will create a sample project that allows us to retrieve and create posts all from a third party site using jQuery and the WP REST API. So if you are ready to get started with the WP REST API, let's go.