-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
28 lines (26 loc) · 926 Bytes
/
single.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="row">
<div class = "col-md-9">
<div class="panel panel-default panel-body">
<?php while(have_posts()):the_post(); ?>
<h3><a href = "<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<p class= "text-muted">Posted by <?php the_author(); ?> on <?php the_time('F jS, Y') ?></p>
<p><?php the_content(''); ?></p>
<?php endwhile; wp_reset_query(); ?>
</div>
</div>
<div class = "col-md-3">
<div class="list-group">
<?php
query_posts('posts_per_page=8');
while(have_posts()):the_post();
?>
<a href="<?php the_permalink(); ?>" class="list-group-item">
<h4 class="list-group-item-heading"><?php the_title(); ?></h4>
<p clasS="list-group-item-text">Posted by <?php the_author(); ?> on <?php the_time('F jS, Y')?></p>
</a>
<?php endwhile; wp_reset_query(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>