如何仅显示十大热门搜索字词?另外,有没有办法将所有搜索字词的“以建议条件显示”设置为“否”?
<?php if( sizeof($this->getTerms()) > 0 ): ?>
<ul class="tags-list">
<?php foreach ($this->getTerms() as $_term): ?>
<li><a href="<?php echo $this->getSearchUrl($_term) ?>" style="font-size:<?php echo $_term->getRatio()*70+75 ?>%;"><?php echo $this->htmlEscape($_term->getName()) ?></a></li>
<?php endforeach; ?>
</ul>
<?php else: ?>
<p class="note-msg"`enter code here`><?php echo $this->__('There are no search terms available.'); ?></p>
<?php endif; ?>