搜索页显示文章数量
说明:显示当前分类下或者搜索结果的文章数量。getTotal()方法在Typecho的/var/Widget/Archive.php。
<?php echo '共'.$this->getTotal().'篇';?>
搜索结果页搜索框显示关键字
说明:判断搜索框所在页面是否是搜索页,是则输出搜索的关键字。<?php $this->archiveTitle(' » ', '', ''); ?>处理当前页标题。
<input type="text" id="s" name="s" class="text" <?php if($this->is('search')): ?> value="<?php $this->archiveTitle(' » ', '', ''); ?>"<?php endif; ?> />