como dije, es raro, porque yo repito el codigo 4 veces de la siguiente manera:
Código:
<?php
/*
Template Name: Tiempo Libre
*/
?><?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
get_header(); ?>
<div id="container">
<div id="content" role="main">
<h1 class="entry-title">Tiempo Libre</h1>
<h1 class="entry-title"><span class="subtitulos-secciones">Tiempo Libre</span> » Bicicleterías</h1>
<?php $the_query = new WP_Query('category_name=bicicleterias&showposts=-1');
while ($the_query->have_posts()) : $the_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div id="container-search-pages">
<!-- #thumbnail <?php the_post_thumbnail('large'); ?> -->
<strong><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>" class="numeros-de-utilidad-title"><?php the_title(); ?></a></strong>
<?php the_content(); ?>
</div>
<?php endwhile;?>
<h1 class="entry-title"><span class="subtitulos-secciones">Tiempo Libre</span> » Agencia de Viajes</h1>
<?php $the_query = new WP_Query('category_name=agencia-de-viajes-agencia-de-viajes&showposts=-1');
while ($the_query->have_posts()) : $the_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div id="container-search-pages">
<!-- #thumbnail <?php the_post_thumbnail('large'); ?> -->
<strong><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>" class="numeros-de-utilidad-title"><?php the_title(); ?></a></strong>
<?php the_content(); ?>
</div>
<?php endwhile;?>
<h1 class="entry-title"><span class="subtitulos-secciones">Tiempo Libre</span> » Alquiler de 4x4</h1>
<?php $the_query = new WP_Query('category_name=alquiler-de-4x4&showposts=-1');
while ($the_query->have_posts()) : $the_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div id="container-search-pages">
<!-- #thumbnail <?php the_post_thumbnail('large'); ?> -->
<strong><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>" class="numeros-de-utilidad-title"><?php the_title(); ?></a></strong>
<?php the_content(); ?>
</div>
<?php endwhile;?>
<h1 class="entry-title"><span class="subtitulos-secciones">Tiempo Libre</span> » Cabalgatas</h1>
<?php $the_query = new WP_Query('category_name=cabalgatas&showposts=-1');
while ($the_query->have_posts()) : $the_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div id="container-search-pages">
<!-- #thumbnail <?php the_post_thumbnail('large'); ?> -->
<strong><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>" class="numeros-de-utilidad-title"><?php the_title(); ?></a></strong>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<div id="contenido-buscador" style="margin: 25px 0 30px 0;">
<?php get_search_form(); ?>
</div>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
pero al agregar un 5to parrafo del mencionado a la lista, recien me tira error!! lo mismo me sucede en otros pages en las cuales ya tenia hecho el formato y queria agregar un nuevo parrafo de codigo...