34 lines
775 B
PHP
34 lines
775 B
PHP
<?php
|
|
/**
|
|
* Blog Pro partial content template.
|
|
*
|
|
* @link https://www.brainstormforce.com
|
|
* @since 1.0.0
|
|
* @package Astra Addon
|
|
*/
|
|
|
|
if ( have_posts() ) :
|
|
|
|
// Load content before the loop.
|
|
do_action( 'astra_before_content_partial_loop' );
|
|
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
|
|
get_template_part( 'template-parts/content', 'single' );
|
|
|
|
// If comments are open or we have at least one comment, load up the comment template.
|
|
if ( comments_open() || get_comments_number() ) :
|
|
comments_template();
|
|
endif;
|
|
endwhile;
|
|
|
|
// Load content after the loop.
|
|
do_action( 'astra_after_content_partial_loop' );
|
|
|
|
else :
|
|
|
|
// Load content if there are no more posts.
|
|
do_action( 'astra_no_more_posts_content_partial' );
|
|
|
|
endif; // END if have_posts().
|