加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
search.php 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
xiaoluan 提交于 2016-08-08 17:27 . 加了特色图像
<?php get_header(); ?>
<!-- 文章页 -->
<div class="zeng-page">
<div class="am-g doc-am-g">
<div class="am-u-sm-12 am-u-md-12 am-u-lg-12">
<?php if(have_posts()): ?>
<?php while(have_posts()) : the_post() ?>
<div class="am-u-sm-12 am-u-md-12 am-u-lg-6" id="post-<?php the_ID(); ?>">
<article class="blog-main">
<div class="am-titlebar am-titlebar-default">
<h2 class="am-article-title blog-title am-titlebar-title"><a href="<?php the_permalink();?>"><?php the_title();?></a></h2>
</div>
<h4 class="am-article-meta blog-meta">by <a href="<?php the_author_link();?>"><?php the_author();?></a> posted on <?php the_date().the_time();?> </h4>
<div class="am-g blog-content">
<div class="am-u-lg-11"><?php the_excerpt();?></div>
</div>
</article>
<hr class="am-article-divider blog-hr">
</div>
<?php endwhile; ?>
<?php else: ?>
<p>没有内容,再试试。</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
</div>
</div>
<!-- 文章页 -->
<?php get_footer(); ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化