I get this:
- Code: Select all
<div class="contentColumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<article class="blogExcerpt clearfix">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_content('more'); ?>
</article>
<?php endwhile; ?>
<?php else : ?>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
But I want this:
- Code: Select all
<div class="contentColumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<article class="blogExcerpt clearfix">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_content('more'); ?>
</article>
<?php endwhile; ?>
<?php else : ?>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>