Here is my theme index.php but I can find where it writes this, doesn’t anyone know what should I do to remove it? I use SubLiminal
<?php get_header(); ?>
<ul id="pages">
<?php wp_list_pages('title_li='); ?>
</ul>
<div id="sidebar">
<?php get_sidebar(); ?>
</div>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>"><span><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></span></h2>
<div class="entry">
<?php foreach((get_the_category()) as $cat) $cat=$cat->cat_ID; ?>
<?php the_content('Leer el articulo completo »'); ?>
</div>
<div class="relinfo">
<?php the_time('F jS, Y @ h:i A'); ?> • se encuentra en <?php the_category(', '); ?><?php edit_post_link('Edit',' • ',''); ?>
<ul>
<li class="permalink"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">Permalink</a></li>
<li class="commentslink"><?php comments_popup_link('Sin Comentarios', 'Comentarios [1]', 'Comentarios [%]'); ?></li>
</ul>
</div>
<!-- <?php trackback_rdf(); ?> -->
<?php comments_template(); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2><span>Sin resultados</span></h2>
<p><strong>RESULTADOS DE TU BUSQUEDA</strong></p>
<p><?php _e("Lo siento, no se encontraron resultados."); ?></p>
<?php endif; ?>
</div>
<?php wp_pagebar(array('before'=>'Page: ', 'before'=>' ', 'after'=>' ', 'tooltip'=>true, 'tooltip_text'=>'Page'))?>
<?php get_footer(); ?>