Código :
<?php /* Template Name: blog */ ?> <?php get_header(); ?> <div id="content"> <!--loop--> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!--titulo--> <h2><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <!--fin titulo--> <!--post--> <?php the_content(); ?> <!--fin post--> <?php endwhile; else: endif; ?> <!--fin loop--> </div> <?php get_footer(); ?>
Gracias de antemano. Espero me puedan ayudar.