-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
28 lines (28 loc) · 1013 Bytes
/
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
<?php get_header(); ?>
<div class="content-box" >
<div class="content">
<?php #if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?>
<h2>搜尋結果:<?php the_search_query(); ?></h2>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="nav-above">
<span class="nav-previous"><?php next_posts_link( '←上一頁' ); ?></span>
<span class="nav-next"><?php previous_posts_link( '下一頁→' ); ?></span>
</div>
<?php endif;
if ( have_posts() ) {
while ( have_posts() ) {
the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title()?></a></h3>
<div class="entry-content-search"><?php the_excerpt(); ?></div>
<?php
}
}
if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="nav-bottom">
<span class="nav-previous"><?php next_posts_link( '←上一頁' ); ?></span>
<span class="nav-next"><?php previous_posts_link( '下一頁→' ); ?></span>
</div>
<?php endif; ?>
</div><!--content-->
</div><!--content-box-->
<?php get_footer(); ?>