A
A
Alexander Pepel2018-04-23 14:44:23
WordPress
Alexander Pepel, 2018-04-23 14:44:23

How to respond to an external request in wordpress?

It is necessary to implement a response from wordpress to a request from another site. At first I just put a file in the root with vp and tried to make a request, everything worked out, but as soon as I connect this file to vp using

require($_SERVER['DOCUMENT_ROOT'] . '/wp-load.php');
then the answer is no more.
Then it was done like this, in custom-functions.php connected as the plugin wrote
add_action( 'wp_ajax_myactionname, 'myaction_ajax');
add_action( 'wp_ajax_nopriv_myactionname', 'myaction_ajax');
function myaction_ajax(){
  print "OK";
}
, on another site, the call goes to mysite.ru/wp-admin/admin-ajax.php?action=myactionname, but nothing happens. Tell me how to process the request and respond to it from WP.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander Cherny, 2018-04-23
@taboon55

I think in your case you need to use the WP REST API

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question