Home >Backend Development >PHP Tutorial >获取typecho自带搜索的关键词

获取typecho自带搜索的关键词

WBOY
WBOYOriginal
2016-06-06 20:21:571467browse

我想自定义搜索显示结果,就是说搜索特定关键词时正常显示搜索结果,同时显示一些指定的内容。我想先获取搜索的关键词,应该用什么方法?

回复内容:

我想自定义搜索显示结果,就是说搜索特定关键词时正常显示搜索结果,同时显示一些指定的内容。我想先获取搜索的关键词,应该用什么方法?

可以用$this->_keywords获取当前搜索词

/usr/themes/default/archive.php文件,

'search' => _t('包含关键字 %s 的文章'),

<code><h3 class="archive-title">
<?php $this->archiveTitle(array(
            'category'  =>  _t('分类 %s 下的文章'),
            'search'    =>  _t('包含关键字 %s 的文章'),
            'tag'       =>  _t('标签 %s 下的文章'),
            'author'    =>  _t('%s 发布的文章')
        ), '', ''); ?></h3></code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn