Ryan J
Ryan J

Reputation: 51

WordPress custom theme, Why is my content not showing on page

My pages are not showing any content on them other then the header and footer I think its something to do with the way i am laying out my but don't really know.

index.php and page.php

<?php get_header(); ?>
<?php if( have_posts() ) : the_post(); ?>
    <?php the_content(); ?>
<?php endif; ?>
<?php get_footer(); ?>

Upvotes: 0

Views: 165

Answers (1)

Gvidas
Gvidas

Reputation: 1964

You forgot while statement.

Here's how your code should look:

<?php get_header(); ?>
<?php if( have_posts() ) : while ( have_posts() ) :  the_post(); ?>
    <?php the_content(); ?>
<?php endwhile; endif; ?>
<?php get_footer(); ?>

Upvotes: 2

Related Questions