how to post articles with categories in blogger with zend ZendGdata 1.11.11

link|improve this question
feedback

1 Answer

$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);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.