我们需要在 wordpress 的根目录中运行服装脚本(一个 php 文件)
简单地说,我们script.php
在 wordpress 项目的根目录中有文件。
当我https://mywordpress.co/script.php
简单地运行时,我需要使用 Curl 调用 Ajax Action,但有些它不起作用。它回应我0
在文件中我调用下面cURL
的代码来调用 ajax 操作但不工作
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://xxxxxxxxxxxxxxxxx.com/wp-admin/admin-ajax.php",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "blakey=blaval",
CURLOPT_HTTPHEADER => array(
"action: create_xxxxx",
"type: product_variation",
"id:".$post_id,
"value:".$xxxxxx,
"cache-control: no-cache",
"content-type: application/x-www-form-urlencoded",
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo 'cURL response:'.$response.'----------------';
}
如何从 wordpress 根目录中的 php 外部文件调用操作。提前致谢