ildi-wp/home-loop.php

19 lines
433 B
PHP
Raw Normal View History

2018-07-24 08:20:35 -05:00
<div class="grid xs-col-100 sm-col-50 md-col-33 grid-gutter-lg">
<?php
if ( have_posts() ) {
while ( have_posts() ) {?>
<section class="home-loop">
<a href="<?php echo get_page_link(); ?>"><?php
the_post();
the_title( '<h1>', '</h1>' );
the_post_thumbnail();
// the_excerpt();
?></a>
</section>
<?php }
get_template_part('pagination');
}
?>
</div>