我正在使用Zend Google API发布到我的博客(Blogspot)博客。我只能输入标题和内容,但我不知道如何添加类别(也称为“标签”)。 有没有办法使用Zend Api向博客发布类别?
谢谢!
答案 0 :(得分:1)
$labels = $entry->getCategory();
$newLabel = $gdClient->newCategory('testlabel2', 'http://www.blogger.com/atom/ns#');
$labels[] = $newLabel; // Append the new label to the list of labels.
$entry->setCategory($labels);