Files
archived-comicpress/page.php
Kniebremser 20ea108725 Reduce WP Coding Standards Messages Part 4
no changes in functions, fixed transalatable strings
2019-06-11 21:00:22 +02:00

13 lines
272 B
PHP

<?php
get_header();
if ( comicpress_sidebars_disabled() ) $content_width = comicpress_themeinfo( 'content_width_disabled_sidebars' );
while ( have_posts() ) :
the_post();
get_template_part( 'content', 'page' );
comments_template( '', true );
endwhile;
get_footer();