-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsearch.php
54 lines (52 loc) · 2.32 KB
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php get_header();?>
<div class="main">
<div class="content">
<?php if (have_posts()) : ?>
<section class="posts">
<div class="posts-inner">
<div class="crumbs_patch">
<div itemtype="http://schema.org/WebPage" id="crumbs"><i class="fa fa-home"></i> <a itemprop="breadcrumb" href="<?php echo home_url();?>" class="tooltip tooltipstered">首页</a> > <span class="current">“<?php the_search_query();?>” 的搜索结果</span></div>
</div>
<?php while (have_posts()) : the_post();?>
<article class="post text" itemscope itemtype="http://schema.org/Article">
<a href="<?php the_permalink() ?>" rel="bookmark" itemprop="url">
<h3 itemprop="name"><?php the_title();?></h3>
</a>
<?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 300,"...");?>
<a href="<?php the_permalink();?>" class="link-all">阅读更多>></a>
<footer class="post-footer">
<div class="notes-options">
<div class="post-info">
<ul>
<li><i class="fa fa-th-large"></i><?php the_category(', ');?></li>
<li itemprop="dateCreated"><a href="<?php the_permalink();?>" rel="bookmark"><i class="fa fa-clock-o" style=" margin-left:0px;"></i><?php the_time('Y-m-d H:i');?></a></li>
</ul>
</div>
<div class="post-options">
<ul>
<li><a href="<?php the_permalink();?>#comments"><?php comments_popup_link('<i class="fa fa-comment"></i>','<i class="fa fa-comment"></i> 1','<i class="fa fa-comment"></i> %');?></a></li>
</ul>
</div>
</div>
</footer>
</article>
<?php endwhile;?>
<?php paging_nav();?>
</div>
</section>
<?php else :?>
<section class="posts">
<div class="posts-inner">
<div class="crumbs_patch">
<div itemscope="" itemtype="http://schema.org/WebPage" id="crumbs"><i class="fa fa-home"></i> <a itemprop="breadcrumb" href="<?php echo home_url();?>" class="tooltip tooltipstered">首页</a> > <span class="current">无搜索结果</span></div>
</div>
<article class="post text" itemscope itemtype="http://schema.org/Article">
<h3>无搜索结果!</h3>
</article>
</div>
</section>
<?php endif;?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer();?>