Files
archived-comicpress/index.php
2019-06-09 23:31:01 +02:00

19 lines
449 B
PHP

<?php
get_header();
if ( ! comicpress_themeinfo( 'disable_blog_on_homepage' ) ) {
if ( have_posts() ) {
while ( have_posts() ) :
the_post();
get_template_part( 'content', get_post_format() );
endwhile;
if ( comicpress_themeinfo( 'enable_comments_on_homepage' ) && ( comicpress_themeinfo( 'home_post_count' ) == '1' ) ) {
$withcomments = true;
comments_template( '', true );
} else comicpress_pagination();
}
}
get_footer();