thnks, it says what parameters to change…but doesnt says where… i dont see them in my index.php :S
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post-bgtop">
<div class="post-bgbtm">
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php
the_title(); ?></a></h2>
<p class="meta">Publicado dentro de <?php the_category(', ') ?> <?php the_tags('Tags: ', ', ', ''); ?> • <?php edit_post_link('Editar', '', ' • '); ?><?php comments_popup_link('Sin comentarios', '1 comentario', '% comentarios'); ?></p>
<div class="entry">
<?php the_content(); ?>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2>Not Found</h2>
<p>Disculpa pero estás buscando algo que no se encuentra aquí.</p>
<?php endif; ?>
</div>
<!-- end #content -->
<div id="BarraDerecha" class="BarraDerecha">
<ul>
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('BarraDerecha')): ?>
<li>Please add some widgets here.</li>
<?php endif; ?>
</ul>
</div>
<!-- end sidebars -->
<?php get_footer(); ?>