| 1 |
<?php |
| 2 |
|
| 3 |
if ( $query_result->have_posts() ) { |
| 4 |
while ( $query_result->have_posts() ) : |
| 5 |
$query_result->the_post(); |
| 6 |
|
| 7 |
echo qi_blocks_get_block_list_template_part( 'blocks/blog-list', 'layouts/' . $layout, get_post_format(), $params ); |
| 8 |
endwhile; // End of the loop. |
| 9 |
} else { |
| 10 |
// Include global posts not found |
| 11 |
qi_blocks_template_part( 'blog', 'templates/parts/posts-not-found' ); |
| 12 |
} |
| 13 |
|
| 14 |
wp_reset_postdata(); |
| 15 |
|