我有一些注册表。我需要在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中的函数执行代码,那么耗时会起作用。
请帮助我。