-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.php
39 lines (31 loc) · 923 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
29
30
31
32
33
34
35
36
37
38
39
<div class="blog-post">
<h2 class="blog-post-title">
<?php if(is_single()) : ?>
<?php the_title(); ?>
<?php else: ?>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
<?php endif;?>
</h2>
<p class="blog-post-meta">
<?php the_time('F j, Y g:i a'); ?>
By
<a href="<?php echo get_author_posts_url(get_the_author_meta('ID')); ?>">
<?php the_author(); ?>
</a>
</p>
<?php if(has_post_thumbnail()) : ?>
<div class="post-thumb">
<?php the_post_thumbnail();?>
</div>
<?php endif; ?>
<?php if(is_single()) : ?>
<?php the_content();?>
<?php else: ?>
<?php the_excerpt();?>
<?php endif;?>
<?php if(is_single()) : ?>
<?php comments_template(); ?>
<?php endif; ?>
</div><!-- /.blog-post -->