#shorts
Not Using CURL Instead of HTTP API in WORDPRESS PLUGIN DEVELOPMENT
WordPress comes with an extensive HTTP API that should be used instead of creating your own curl calls. It’s both faster and more extensive. It’ll fall back to curl if it has to, but it’ll use a lot of WordPress’ native functionality first.
use of curl_exec( $ch ) in wordpress plugin development is not accepted by Plugin reviewers hence it has to be replace with
Plugin Guidebook HTTP API wordpress builtin functions
POST METHOD EXAMPLE IN VIDEO
Now Wordpress native function is used instead of cURL
That's All!