При отправке формы AJAX в Wordpress жадность не работает - PullRequest
0 голосов
/ 26 марта 2019

У меня есть форма регистрации.Мне нужно отправить эту форму в Ajax.Я добавил действия в function.php.В index.php я добавил require_once ('vendor / autoload.php');В functions.php я добавил:

use GuzzleHttp\Client;
add_action( 'wp_ajax_register_user_front_end', 'register_user_front_end', 0 
);
add_action( 'wp_ajax_nopriv_register_user_front_end', 'register_user_front_end' );

function register_user_front_end() {
   $client = new Client(); // if i commented this string server respond status 200
   // If I didn't comment previous string server respond status 500
   // Some code
}

Но если я выполняю код из функции в index.php, жрет работу.

Пожалуйста, помогите мне.

...