0

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

1 Answers1

0
$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);
Thoman
  • 742
  • 2
  • 9
  • 20