Files
dis-2019/loop.php
2019-09-03 00:08:51 +02:00

34 lines
744 B
PHP

<?php if (have_posts()): while (have_posts()): the_post();
static $qc = 0;
$qc++;
if (is_home() and $qc < 3) {
$firstclass = 'post_nr post_nr_' . $qc;
} else {
$firstclass = '';
}
?>
<article id="post-<?php the_ID();?>" <?php post_class($firstclass);?>>
<?php include locate_template('loop-inner.php', false, false);?>
</article>
<?php endwhile;?>
<?php else: ?>
<!-- article -->
<article class="no-result">
<?php
if(!is_search()){
?>
<h2><?php _e('Sorry, nothing to display.', 'dis2019');?></h2>
<?php
}
?>
</article>
<!-- /article -->
<?php endif;?>