20 lines
428 B
PHP
20 lines
428 B
PHP
<?php if (have_posts()): while (have_posts()): the_post();
|
|
static $qc = 0;
|
|
$qc++;
|
|
?>
|
|
<article id="post-<?php the_ID();?>" <?php post_class();?>>
|
|
<?php include( locate_template( 'loop-inner.php', false, false ) ); ?>
|
|
</article>
|
|
|
|
|
|
<?php endwhile;?>
|
|
|
|
<?php else: ?>
|
|
|
|
<!-- article -->
|
|
<article class="no-result">
|
|
<h2><?php _e('Sorry, nothing to display.', 'dis2019');?></h2>
|
|
</article>
|
|
<!-- /article -->
|
|
|
|
<?php endif;?>
|