wordpress建站笔记(五)


##搜索页模板调用
###文件模板命名(search.php)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="list_box">
<h2 class="left_h2">搜索结果页面</h2>
<h1 style=" clear:both; text-align: center; line-height: 60px;padding-top:30px;">搜索词:<?php echo get_search_query(); ?>结果如下</h1>
<ul class="list_news">
<?php
if(have_posts()){
while (have_posts()){
the_post();?>
<li>
<a href="<? the_permalink(); ?>" title="<? the_title(); ?>"><? the_title()?></a>
<span class="news_time"><? the_time('Y-m-d'); ?></span>
</li>
<?php
}
}else{
echo "暂无搜索结果";
}
?>
</ul>
</div>

get_search_query();获取搜索词


文章作者: Jacky
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 Jacky !
  目录