Loop in a template page
-
Hi,
Im trying include a loop in my template page. I try it this:
<?php
/*
Template Name: Mi pagina
*/
?><?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div class=”entry”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?><?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this entry.’, ‘<p>’, ‘</p>’); ?>
</div><?php get_footer(); ?>
But dont work…
Please help me…
Pd. Si alquien puede hacerlo en castellano le estare eternamente agradecido… saludos,
- The topic ‘Loop in a template page’ is closed to new replies.