Bir yazı göndererek zaman XMLRPC API ile wordpress post etiketleri ayarlama?

2 Cevap php

Ben yeni mesaj göndermek için Xmlrpc üzerinden WordPress API kullanmaya çalışıyorum. Ama sonrası etiketleri (ne kategoriler) ayarlanamaz.

        echo "Adding $term to blog via XMLRPC ...";
        $client = new IXR_Client("http://$blog.wordpress.com/xmlrpc.php");
        $content = array('title'=>$term,
                         'description'=>"All about $term",
                         'category'=>'barvaz,moshe',
                          'tags'=>'tag1,tag2');
        $client->query('metaWeblog.newPost', 0, $username, $password, $content, true);
        $rv = $client->getResponse();
        print_r($rv);

Herhangi bir fikir?

2 Cevap

$categories[0]="cate1";
$categories[1]="cate2";

$tags[0]="tag1";
$tags[1]="tag2";


...
$content['title'] = $title;
$content['categories'] = $categories;
$content['mt_keywords'] = $tags;
$content['description'] = $description; 

fazla e-posta: cn.xiaowen @ gmail.com

Ayrıca, bu gibi özel alanını ayarlayabilirsiniz

$content['custom_fields'] = array(
        array('key' => 'Image', 'value' => $img),
        array('key' => '_aioseop_keywords', 'value' => $aiokey),
        array('key' => '_aioseop_title', 'value' => $title),
    );