$_collection = Mage::getModel('catalogsearch/query')->getResourceCollection()
->setPopularQueryFilter($storeid)
->setPageSize($count)
->load(true);
foreach ($this->$_collection->getItems() as $item):
echo $item->getQueryText()
endforeach;
Mage::getUrl('catalogsearch/result')."?q=". $_item->getName()
Magento 调出TopSearch关键字
本文介绍了一个Magento应用程序中加载热门搜索查询的方法。通过设置资源集合、过滤条件和页面大小,可以获取到特定商店ID下的热门搜索词,并展示了如何遍历这些查询以显示其文本。


被折叠的 条评论
为什么被折叠?



