PluginProbe
Qi Blocks / 1.0.7
Qi Blocks v1.0.7
1.5.3 1.5.2 1.5.1 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1 1.1.1 1.1.2 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 All 45 releases
qi-blocks / inc / blocks / blog-list / templates / loop.php

loop.php in Qi Blocks 1.0.7, at inc/blocks/blog-list/templates/loop.php

15 lines 404 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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