-
Notifications
You must be signed in to change notification settings - Fork 2
/
category.php
42 lines (29 loc) · 1.1 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
40
41
42
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-xs-12">
<?php while ( have_posts() ) : the_post(); ?>
<?php
if (get_the_title() != 'A date range picker for Twitter Bootstrap') {
add_filter('the_content', 'wpautop');
add_filter('the_content', 'wptexturize');
}
?>
<?php the_date('F j, Y', '<h2 class="postdate">', '</h2>'); ?>
<div class="post">
<?php if (get_the_title() != ''): ?>
<h2><a href="<?php the_permalink(); ?>" class="post-title"><?php the_title(); ?></a></h2>
<?php endif; ?>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php if ($wp_query->max_num_pages > 1): ?>
<ul class="pager">
<li class="previous"><?php next_posts_link('← Older posts'); ?></li>
<li class="next"><?php previous_posts_link('Newer posts →'); ?></li>
</ul>
<?php endif; ?>
</div><!-- //first column -->
</div><!-- //row -->
</div><!-- //container -->
<?php get_footer(); ?>