I wanted to load a fishpig category collection by Id and retrieve its details.
Have used this code.
$main_category_col = Mage::getResourceModel('wordpress/post_category_collection')->load(6);
foreach($main_category_col as $main_category_col_obj)
{
$category_name = $main_category_col_obj->getName();
}
Please help.