Hi,
Is there any member function available in SimplePie to get the Category (Labels) of a post ?
Hi,
Is there any member function available in SimplePie to get the Category (Labels) of a post ?
You will need to use the get_categories() function...
foreach ($item->get_categories() as $category)
{
echo $category->get_label();
}