bueno aqui envio el codigo del index.php .... alguna observación? estare muy agradecido, cómo dije este error se repite en todos los temas, y las paginas las tengo en el mismo directorio asi, que no entiendo??
Código PHP:
<?php get_header(); ?>
<div id="maintext">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="postblock">
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<p class="date"><?php the_time('F jS, Y') ?> by <strong><?php the_author() ?></strong></p>
<?php the_content('Read the rest of this entry »'); ?>
<p class="postmetadata">Posted in <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php endwhile; ?>
<p class="navigation">
<span class="left"><?php posts_nav_link('','','« Older Entries') ?></span> <span class="right"><?php posts_nav_link('','Newer Entries »','') ?></span>
</p>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>