首页    >    中文手册    >   模板标签-the_search_query()

模板标签-the_search_query()

说明

如果有查询请求,该标签显示当前请求的查询语句。

可在HTML属性(见下文中的“搜索框”示例)中放心使用该标签。

用法

 <?php the_search_query(); ?> 

示例

在搜索框中显示查询语句

如果你刚刚执行一次搜索,可以在搜索框中显示最近的查询语句。

<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
<div>
<input type="text" value="<?php the_search_query(); ?>" name="s" id="s" />
<input type="submit" id="searchsubmit" value="Search" />
</div>
</form>

在结果页面显示查询语句

你可以在搜索结果页面显示查询字符串。

<p>You searched for "
<?php the_search_query() ?>
". Here are the results:</p>

注释

分类:中文手册

* 版权声明:作者WordPress啦! 转载请注明出处。