Hi,
Here is the html source of the section on the rendered page:
<li class="page_item <li class="page_item page-item-3 current_page_item"><a href="http://www.antonellasevero.com/joantest" title="home">home</a></li>
<li class="page_item page-item-2"><a href="http://www.antonellasevero.com/joantest/informacion/" title="biografĂa">biografĂa</a></li>
<li class="page_item page-item-9"><a href="http://www.antonellasevero.com/joantest/blog/" title="Blog">Blog</a></li>
</li></ul>
Here is the source of the index.php file:
<?php get_header(); ?>
<div id="content">
<div id="content-left">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="box-left" id="post-<?php the_ID(); ?>">
<?php If (!is_front_page()){?><h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3><?php }?>
<div class="meta">
<span class="meta-date"><?php the_time('l, F jS, Y'); ?></span> |
<span class="meta-categories"><?php the_category(', '); ?></span> |
<span class="meta-comments"><?php comments_popup_link(__('No Comments'), __('1 Comment'), __('% Comments')); ?></span>
</div>
<?php the_content(__('› Continue reading')); ?>
<?php the_tags('<p class="tags">Tags: ', ', ', '</p>'); ?>
<div class="clear"></div></div>
<?php endwhile; ?>
<div class="box-left navigation">
<?php next_posts_link('« Previous Entries') ?> <?php previous_posts_link('Next Entries »') ?>
</div>
<?php else : ?>
<div class="box-left">
<h3>Not found!</h3>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
</div>
<?php endif; ?>
</div><!-- end content-left -->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div><!-- end content -->
<?php get_footer(); ?>
Here is the source of the single.php file:
<?php get_header(); ?>
<div id="content">
<div id="content-left">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="box-left" id="post-<?php the_ID(); ?>">
<?php If (!is_single('3')){?><h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3><?php }?>
<div class="meta">
<span class="meta-date"><?php the_time('l, F jS, Y'); ?></span> |
<span class="meta-categories"><?php the_category(', '); ?></span>
</div>
<?php the_content(); ?>
<?php the_tags('<p class="tags">Tags: ', ', ', '</p>'); ?>
<div class="clear"></div></div>
<?php comments_template(); ?>
<?php endwhile; ?>
<?php else : ?>
<div class="box-left">
<h3>Not found!</h3>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
</div>
<?php endif; ?>
</div><!-- end content-left -->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div><!-- end content -->
<?php get_footer(); ?>
Let me know if you needed something else to see.
Thanks so much!
Antonella