mfwpt/index.php

11 lines
257 B
PHP
Raw Normal View History

<?php
get_header();
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile;
else :
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
endif;
//get_sidebar();
get_footer();
?>