-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.php
39 lines (39 loc) · 1.48 KB
/
category.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
<?php get_header(); ?>
<div class="content-box clear" >
<div class="content">
<h2><?php single_cat_title(); ?></h2>
<?php $category_description = category_description();
if ( ! empty( $category_description ) ) ?>
<span class="cat-description"><?php echo $category_description ?></span>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="nav-above">
<span class="nav-previous"><?php previous_posts_link( '←上一頁' ); ?></span>
<span class="nav-next"><?php next_posts_link( '下一頁→' ); ?></span>
</div>
<?php endif;
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h3><a href="<?php the_permalink(); ?>"><?php the_title()?></a></h3>
<div class="entry-content-category">
<?php
the_excerpt();
?>
</div><!--entry-content-category--></div>
<?php } }
else { ?>
<div class="entry-content-category">
<?php _e('Sorry, no posts matched your criteria.'); ?>
</div><!--entry-content-category-->
<?php }?>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="nav-bottom">
<span class="nav-previous"><?php previous_posts_link( '←上一頁' ); ?></span>
<span class="nav-next"><?php next_posts_link( '下一頁→' ); ?></span>
</div>
<?php endif; ?>
</div><!--content-->
</div><!--content-box-->
<?php get_footer(); ?>