-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarpp-template-blogs.php
65 lines (54 loc) · 2.14 KB
/
yarpp-template-blogs.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php global $blog_id; ?>
<?php if ($related_query->have_posts()):?>
<?php $i = 0; ?>
<?php while ($related_query->have_posts()) : $related_query->the_post(); ?>
<?php if($i == 0): ?>
<div class="minibox f-left">
<p><a href="<?php the_permalink(); ?>" title="Foto de la entrada" class="img-rpa">
<?php
if(has_post_thumbnail()) {
the_post_thumbnail(array(180,115));
} else {
echo '<img src="'.get_bloginfo("template_url").'/img/imagen-por-defecto.jpg" />';
}
?></a><br class="clear" /></p>
<h4><a href="<?php the_permalink(); ?>" title="Título de la entrada"><?php the_title(); ?></a></h4>
<p class="read-more"><a href="<?php the_permalink(); ?>" title="Leer más">leer más</a></p>
<br class="clear" />
</div><!-- end minibox -->
<?php elseif($i == 1): ?>
<div class="minibox">
<p><a href="<?php the_permalink(); ?>" title="Foto de la entrada" class="img-rpa">
<?php
if(has_post_thumbnail()) {
the_post_thumbnail(array(180,115));
} else {
echo '<img src="'.get_bloginfo("template_url").'/img/imagen-por-defecto.jpg" />';
}
?>
</a><br class="clear" /></p>
<h4><a href="<?php the_permalink(); ?>" title="Título de la entrada"><?php the_title(); ?></a></h4>
<p class="read-more"><a href="<?php the_permalink(); ?>" title="Leer más">leer más</a></p>
<br class="clear" />
</div><!-- end minibox -->
<?php elseif($i == 2): ?>
<div class="minibox last-r">
<p><a href="<?php the_permalink(); ?>" title="Foto de la entrada" class="img-rpa">
<?php
if(has_post_thumbnail()) {
the_post_thumbnail(array(180,115));
} else {
echo '<img src="'.get_bloginfo("template_url").'/img/imagen-por-defecto.jpg" />';
}
?>
</a><br class="clear" /></p>
<h4><a href="<?php the_permalink(); ?>" title="Título de la entrada"><?php the_title(); ?></a></h4>
<p class="read-more"><a href="<?php the_permalink(); ?>" title="Leer más">leer más</a></p>
<br class="clear" />
</div><!-- end minibox -->
<?php endif; ?>
<?php $i++; ?>
<?php endwhile; ?>
<?php else: ?>
<p><?php echo 'No hay artículos relacionados';?></p>
<?php endif; ?>