-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathyarpp-template-db.php
executable file
·48 lines (47 loc) · 1.93 KB
/
yarpp-template-db.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
40
41
42
43
44
45
46
47
48
<?php
/*
YARPP Template: Smaller Thumbnails
Description: Displays headline next to photo of the post
Author: bryanvtran (Bryan Tran)
*/
?><?php if (have_posts()):?>
<div id="sidebar-similar" class="side-info">
<h4 class="yarpp-title">Related Content</h4>
<ul class="related-posts">
<?php while (have_posts()) : the_post(); ?>
<li>
<div class="row">
<?php if (has_post_thumbnail()): ?>
<div class="small-8 columns" style="padding-right: 0.4rem;">
<a href="<?php the_permalink() ?>" rel="bookmark">
<h4><?php /* get first category in list */ $categories = get_the_category(); echo $categories[0]->name ?></h4>
</a>
<p><?php the_time('F j, Y'); ?></p>
<a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</div>
<div class="small-4 columns">
<a class="thumbnail" href="<?php the_permalink() ?>" rel="bookmark">
<?php the_post_thumbnail('db-category-thumb'); ?>
</a>
</div>
<?php else: ?>
<div class="small-12 columns">
<a href="<?php the_permalink() ?>" rel="bookmark">
<h4><?php /* get first category in list */ $categories = get_the_category(); echo $categories[0]->name ?></h4>
</a>
<p><?php the_time('F j, Y'); ?></p>
<a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</div>
<?php endif; ?>
</div>
</li>
<hr />
<?php endwhile; ?>
</ul>
</div><!-- end div#sidebar-similar -->
<?php else: ?>
<?php endif; ?>