1 2 3 4 5 6 7 8 9
<div class="content"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h1><?php the_title(); ?></h1> <?php the_content(); ?> <?php endwhile; else: ?> <p>Sorry, no posts found. <?php endif; ?> </div>
Sign in to leave a comment.