是否可以检查(通过 php)在 WordPress 中是否启用了 XML-RPC?比如,写一个函数来测试它。
if(is_xmlrpc_enabled()) {
//action
}
else {
//another action
}
默认情况下,对于 WP 版本 > 3.5 启用 XML-RPC(带有允许禁用它的 'xmlrpc_enabled' 挂钩)对于旧版本,数据库中有一个字段(选项表),指示它是否启用。(对于 wp > 3.5,此选项已删除)
function is_xmlrpc_enabled() {
$returnBool = false;
$enabled = get_option('enable_xmlrpc'); //for ver<3.5
if($enabled) {
$returnBool = true;
}
else {
global $wp_version;
if (version_compare($wp_version, '3.5', '>=')) {
$returnBool = true; //its on by default for versions above 3.5
}
else {
$returnBool = false;
}
}
return $returnBool;
}
WordPress 在其 XML-RPC 服务器中有两种测试方法:
demo.sayHello – Returns a standard “Hello!” message.
demo.addTwoNumbers – Accepts an array containing two numbers and returns the sum.
function sayHello()
{
$params = array();
return $this->send_request('demo.sayHello',$params);
}
$objXMLRPClientWordPress = new XMLRPClientWordPress("http://localhost/wordpress31/xmlrpc.php" , "username" , "passowrd");
function send_request($requestname, $params)
{
$request = xmlrpc_encode_request($requestname, $params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
curl_setopt($ch, CURLOPT_URL, $this->XMLRPCURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
$results = curl_exec($ch);
curl_close($ch);
return $results;
}
如果您得到相同的结果,则意味着您能够正确地将请求发送到您的 WordPress XML-RPC 服务器并正确接收请求。