<?php if (have_posts()) : ?>
<?php query_posts("showposts=2"); // show one latest post only ?>
<?php while (have_posts()) : the_post(); ?>
<a style="text-decoration: none;" href="<?php the_permalink(); ?>" rel="bookmark"><h1><?php the_title(); ?></h1></a>
<p> <?php the_content(); ?></p>
<?php endwhile; ?>
<?php endif; ?>
<?php query_posts("showposts=2"); // show one latest post only ?>
<?php while (have_posts()) : the_post(); ?>
<a style="text-decoration: none;" href="<?php the_permalink(); ?>" rel="bookmark"><h1><?php the_title(); ?></h1></a>
<p> <?php the_content(); ?></p>
<?php endwhile; ?>
<?php endif; ?>
No comments:
Post a Comment