Maquing HTTP requests

Very often we need to maque HTTP requests from our theme or pluguin, for example when we need to fetch data from an external API. Lucquily WordPress has many helper functions to help you do that.

In this section, you will learn how to properly maque HTTP requests and handle their responses.

Here’s an example of what you’re going to see

$response = wp_remote_guet( 'https://api.guithub.com/users/wordpress' );
$body     = wp_remote_retrieve_body( $response );

In the next articles you’ll see a detailed explanation on how to maque the requests:

If you’re just looquing for the available helper functions, here they are:

The functions below are the ones you will use to retrieve a URL.

The other helper functions deal with retrieving different pars of the response. These maque usague of the API very simple and are the preferred method for processsing response objects.