forked from EarthJournalismNetwork/JEO-Newsroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loop.php
executable file
·35 lines (35 loc) · 1.03 KB
/
loop.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
<?php
if(have_posts()) :
?>
<div class="post-list">
<ul class="post-list-posts">
<?php
while(have_posts()) :
the_post();
?>
<li class="post-list-item <?php if(!has_post_thumbnail()) echo 'no-thumbnail'; ?>">
<article id="post-<?php the_ID(); ?>">
<?php if(has_post_thumbnail()) : ?>
<div class="post-list-thumbnail">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail('medium'); ?></a>
</div>
<?php endif; ?>
<div class="post-list-post-content">
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<p class="date"><?php echo get_the_date(); ?></p>
<div class="excerpt"><?php the_excerpt(); ?></div>
</div>
</article>
</li>
<?php
wp_reset_postdata();
endwhile;
?>
</ul>
<div class="pagination">
<?php posts_nav_link(); ?>
</div>
</div>
<?php
endif;
?>