-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcontent.php
37 lines (23 loc) · 1.37 KB
/
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
<?php
/* STANDARD POSTS */
?>
<article <?php post_class('clearfix'); ?> id="post-<?php the_ID(); ?>">
<header>
<?php
//Comments
if (comments_open() && !post_password_required()){
comments_popup_link('0','1','%','article-meta-comments');
}
?>
<p class="article-meta-categories"><?php the_category(' / '); ?></p>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<p class="article-meta-extra"><?php the_date(get_option('date_format'));print(' at '); the_time(get_option('time_format')); ?>, by <?php the_author_posts_link(); ?></p>
</header>
<?php if(has_post_thumbnail()): ?>
<figure class="article-preview-image">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
</figure>
<?php endif; ?>
<?php the_content('Read more »'); ?>
</article>
<hr class="fancy-hr" />