-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
26 lines (26 loc) · 954 Bytes
/
page.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
<?php get_header(); ?>
<div class="content-box" >
<div class="content clear">
<?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?>
<?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(); ?>
<div class="entry-content text"><?php the_content(); ?></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(); ?>