-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
executable file
·33 lines (33 loc) · 1.09 KB
/
content.php
File metadata and controls
executable file
·33 lines (33 loc) · 1.09 KB
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
<div class="post-container">
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if (has_post_thumbnail()) : ?>
<a class="featured-media" title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('post-thumb'); ?>
</a>
<?php endif; ?>
<?php
$post_title = get_the_title();
if (!empty($post_title)) :
?>
<div class="post-header">
<h2 class="post-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
</div>
<?php endif; ?>
<div class="posts-meta">
<?php the_date(get_option('date_format')); ?>
<?php masonry_readtime() ?>
</div>
<div class="posts-excerpt">
<?php the_excerpt(); ?>
</div>
<?php if (empty($post_title)) : ?>
<div class="posts-meta">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_time(get_option('date_format')); ?>
</a>
</div>
<?php endif; ?>
</div>
<!-- /post -->
</div>
<!-- /post-container -->