1 Star 3 Fork 0

yeszao / D9

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
search.php 837 Bytes
一键复制 编辑 原始数据 按行查看 历史
yeszao_e17d 提交于 2017-04-10 10:02 . first version
<?php get_header(); ?>
<div class="content-wrap">
<div class="content">
<?php if ( !have_posts() ) : ?>
<header class="archive-header">
<h1>没有找到有关【<?php echo htmlspecialchars($s); ?>】的内容</h1>
<p class="muted">给您推荐以下内容:</p>
</header>
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'showposts' => 4,
'ignore_sticky_posts' => 1,
'paged' => $paged
);
query_posts($args);
?>
<?php include( 'modules/excerpt.php' ); ?>
<?php else: ?>
<header class="archive-header">
<h1>有关【<?php echo htmlspecialchars($s); ?>】的内容</h1>
</header>
<?php include( 'modules/excerpt.php' ); ?>
<?php endif; ?>
</div>
</div>
<?php get_sidebar(); get_footer(); ?>
PHP
1
https://gitee.com/yeszao/d9.git
git@gitee.com:yeszao/d9.git
yeszao
d9
D9
master

搜索帮助