Buongiorno, felice di essere stato d'aiuto.
Come hai descritto il problema non capisco se ti riferisci ad un plugin installato per i Google Rich Snippets.
Devi vedere se nel file single.php c'è questa voce:
Codice PHP:
<?php the_time() ?>
se non esiste la devi inserire ( che sarebbe la data di pubblicazione )
Codice PHP:
<span class="updated"><?php the_time('j F,Y'); ?></span>
oppure prova con
Codice PHP:
<span class="updated"><?php get_the_modified_time('j F,Y'); ?></span>
Di solito vicino al nome dell'autore.
P.S.:
Sono andato al tuo sito e mi sono accorto che usi twenty-eleven, qui è più complicato...
devi usare una piccola funzione per risolvere con questo tema:
Cerca nel file functions.php questa riga
Codice PHP:
function twentyeleven_posted_on()
e la sostituisci tutta con questa :
Codice PHP:
function twentyeleven_posted_on() {
printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date updated" datetime="%3$s" pubdate>%4$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'twentyeleven' ),
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() ),
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ),
get_the_author()
);
}
Fammi sapere, ciao