使用wordpress API将自定义字段添加到新的wordpress文章中


Add custom fields to a new wordpress post using the wordpress API

我需要以编程方式创建新的Wordpress帖子,并为每个帖子分配自定义字段。使用Wordpress xmlrpc API,我可以成功添加新的帖子,但自定义字段是而不是添加的。

以下是代码摘录:

$blogid = 0;
$username = 'user';
$password = 'xyzzy1234';
$method = 'wp.newPost';
$title = "Post Title";
$pcontent = "I'm the post content.";
$categories = array('Cat 1', 'Cat 2');
$post_status = 'publish';  
$custom_fields = array('cccId' => '12345', 'cccType' => 'news');
$content = array(
                'post_type' => 'post',
                'post_status' => $post_status,
                'post_title' => $title,
                'post_content' => $pcontent,
                'terms_names' => array('category'=>$categories),
                'comment_status' => $comment_status,
                'ping_status' => $ping_status,
                'custom_fields' => $custom_fields
            );
$parameters = array($blogid, $username, $password, $content);
$response = sendRequest($method, $parameters);
function sendRequest($methodName, $parameters)  {
$request = xmlrpc_encode_request($methodName, $parameters);
$ch = curl_init();
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
curl_setopt($ch, CURLOPT_URL, RPC_URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
$results = curl_exec($ch);
$results = print_r(xmlrpc_decode($results));
curl_close($ch);
return $results;
}

经过一些实验,发现$custom_fields需要这样指定:

$custom_fields = array(
                   array('key' => 'cccId', 'value' => '12345'),
                   array('key' => 'cccType', 'value' => 'news')
                 );