Sisi lo so che è colpa di quel 6 minutes ago ma non so come devo modificare..
Dovebbe trovarsi nell'index sotto la dicitura <php time se non erro.. guardate:
Codice:
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?><br>
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post-date"><span class="post-month"><?php the_time('M') ?></span> <span class="post-day"><?php the_time('d') ?></span></div>
<div class="post-title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Link verso <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<span class="post-cat"><?php the_category(', ') ?></span> <span class="post-comments"><?php comments_popup_link('Nessun commento »', '1 commento »', '% commenti »'); ?></span>
</div>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div><!--/post -->
<?php endwhile; ?>
<div class="navigation">
<span class="previous-entries"><?php next_posts_link('Interventi precedenti') ?></span> <span class="next-entries"><?php previous_posts_link('Interventi successivi') ?></span>
</div>
<?php else : ?>
<h2>Non trovato</h2>
<p>Spiacenti ma la pagina o l'intervento cercato non è stato trovato</p>
<?php endif; ?>
</div><!--/content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Come modifico? Grazie.