30 lines
589 B
PHP
30 lines
589 B
PHP
|
<?php
|
||
|
// MFWPT - page.php
|
||
|
|
||
|
?>
|
||
|
<?php get_header(); ?>
|
||
|
|
||
|
<main>
|
||
|
<?php
|
||
|
// start the loop, check for posts
|
||
|
if ( have_posts() ) : while ( have_posts() ) : the_post();
|
||
|
?>
|
||
|
|
||
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||
|
<?php the_content(); ?>
|
||
|
</article><!-- page -->
|
||
|
|
||
|
<?php
|
||
|
endwhile;
|
||
|
else :
|
||
|
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
|
||
|
endif;
|
||
|
|
||
|
// 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;
|
||
|
?>
|
||
|
</main>
|
||
|
|
||
|
<?php get_footer(); ?>
|