-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcontent-link.php
34 lines (20 loc) · 1.19 KB
/
content-link.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
<?php
/* Link POSTS */
?>
<article <?php post_class('clearfix'); ?> id="post-<?php the_ID(); ?>">
<header>
<span class="post-format-url" aria-hidden="true" data-icon=""></span>
<p class="article-meta-categories"><?php the_category(' / '); ?></p>
<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; ?>
<div class="url-container">
<p><?php the_title(); ?></p>
<span><?php the_content(); ?></span>
</div> <!-- end of url container -->
</article>
<hr class="fancy-hr" />