-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
31 lines (25 loc) · 929 Bytes
/
home.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
<div class="revistas">
<div class="revistas-container w-container">
<div class="w-dyn-list">
<div class="w-clearfix w-dyn-items w-row">
<?php
$args = array ('post_type' => 'revista');
$myposts = get_posts( $args );
foreach( $myposts as $post ) :
setup_postdata($post);
?>
<div class="revista-item w-dyn-item w-col w-col-3">
<a href="<?php the_permalink(); ?>" class="revista-item-link w-inline-block">
<?php the_post_thumbnail('large'); ?>
<h3 class="revista-title"><?php the_title(); ?></h3>
<p><small style="text-transform: uppercase;"><?php the_time('M Y'); ?></small></p>
</a>
</div>
<?php endforeach; ?>
</div>
<!-- <div class="w-dyn-empty">
<p>No items found.</p>
</div> -->
</div>
</div>
</div>