private function _generateBreadcrumbsForAuthor()
 {
     $currentInfo = $this->_getCurrentInfo();
     $breadcrumbItem = $this->_getBreadcrumbItem();
     $breadcrumbItem->name = $currentInfo->name;
     $breadcrumbItem->type = $currentInfo->type;
     $breadcrumbItem->url = $this->_WPLayer->get_author_posts_url($currentInfo->id);
     $breadcrumbItem->queryType = ffConstQuery::AUTHOR;
     $this->_breadcrumbsCollection->addItem($breadcrumbItem);
 }