-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.php
28 lines (22 loc) · 897 Bytes
/
content.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
<div class="blog-post">
<h2 class="blog-post-title"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?> </a> </h2>
<p class="blog-post-meta"> <?php the_date(); ?> by <a href="#"> <?php the_author(); ?> </a></p>
<?php if ( has_post_thumbnail() ) {?>
<div class="row">
<div class="col-md-2">
<?php the_post_thumbnail('thumbnail'); ?>
</div>
<div class="col-md-8">
<?php the_excerpt(); ?>
</div>
</div>
<?php } else { ?>
<?php the_excerpt(); ?>
<?php } ?>
<a href="<?php comments_link(); ?>">
<?php
printf( _nx( 'One Comment', '%1$s Comments', get_comments_number(), 'comments title', 'textdomain' ), number_format_i18n( get_comments_number() ) ); ?>
</a>
<hr>
<!-- the rest of the content -->
</div><!-- /.blog-post -->