-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·65 lines (50 loc) · 1.45 KB
/
index.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
55
56
57
58
59
60
61
62
63
64
65
<?php get_header(); ?>
<?php if (have_posts()) { ?>
<div id="content">
<?php
$postCount = 0;
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts( 'paged=$page&post_per_page=-1&cat=' . get_query_var('cat') );
?>
<?php include(TEMPLATEPATH . '/coshome.php'); ?>
<div id="more-posts">
<?php
while (have_posts()) {
the_post();
if($postcount <= 3 ) {
//GETS NEXT FOUR EXCERPTS
?>
<div class="clearfloat recent-excerpts">
<h4>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</h4>
<p class="date"><?php the_time('F j, Y'); ?> • </p>
<?php the_content(); ?>
</div>
<?php //GETS NEXT HEADLINES
}
else {
ob_start();
echo '<li><a href="';
the_permalink();
echo '">';
the_title();
echo '</a></li>';
$links[] = ob_get_contents();
ob_end_clean();
}
$postcount ++;
}
}
else {
?>
<?php } ?>
<?php
if(count($links)): ?>
<h3><?php _e('Older Posts','Mimbo'); ?></h3>
<ul class="headlines"><?php echo join("\n ", $links); ?></ul>
<?php endif; ?>
</div><!--END RECENT/OLDER POSTS-->
</div><!--END CONTENT-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>