xmlrpcでのタグのスラッグつき投稿について
-
下記のような感じでスラッグ付きのタグで投稿したいと思っているのですが
どうしてもうまくいきません。
どのように記述したらご教授頂ければと思いますよろしくお願いします。$tags[] = new XML_RPC_Value(array(‘name’=> new XML_RPC_Value(‘あああ’,’string’),’slug’=> new XML_RPC_Value(“aaa”,’string’)),’struct’);
$tags[] = new XML_RPC_Value(array(‘name’=> new XML_RPC_Value(‘いいい’,’string’),’slug’=> new XML_RPC_Value(“iii”,’string’)),’struct’);$wpContent = new XML_RPC_Value(
array(
‘title’ => new XML_RPC_Value($post_name, ‘string’),
‘categories’ => new XML_RPC_Value($categories, ‘array’),
‘description’ => new XML_RPC_Value(“$description”, ‘string’),
‘mt_keywords’ => new XML_RPC_Value($tags, ‘array’),
‘custom_fields’=> new XML_RPC_Value($custom_fields,’struct’),
‘dateCreated’ => new XML_RPC_Value($dateCreated, ‘dateTime.iso8601’),
),
‘struct’
);
- トピック「xmlrpcでのタグのスラッグつき投稿について」には新たに返信することはできません。