Yes, exactly that’s what I want to do.
I read that already yesterday.
But, this code there:
<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>">Read more...</a></p>
<?php endwhile; ?>
Doesn’t this display just the permalinks? If so, what would be the suitable modifications I should be making so as to have the complete posts?
Thanks!