forked from sveinbjornt/lemur2013
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bordi.php
26 lines (21 loc) · 878 Bytes
/
bordi.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
<div class="grid gutter collapse720 bordi">
<?php $my_query = new WP_Query('cat=597&showposts=3'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="col s1of3 bordi-item">
<div class="thumb">
<a class="aspect a275-200" href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail('sidebar'); ?>
</a>
</div>
<div class="main">
<h2>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2>
<p><?php
global $post;
echo get_post_meta($post->ID, 'bordi', true);
?></p>
</div>
</div>
<?php endwhile; ?>
</div>