how to post articles with categories in blogger with zend Gdata 1.11

475 views Asked by At

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

1

There are 1 answers

0
Thoman On
$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);