En mi opinión la mejor solución es crear un archivo
functions.php en tu tema si no lo tiene. Ver
http://codex.wordpress.org/Child_The..._functions.php
En ese archivo puedes modifcar a tu gusto la función
entry_meta del archivo
functions.php del tema padre (twentytwelve) que es la que te imprime todos los datos del post incluidos los que no quieres que salgan.
La parte que debes copiar y modifcar se explica aquí:
http://wordpress.org/support/topic/t...a#post-3785633
Quizá te funcionaría algo así:
Código PHP:
Ver original// Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
if ( $tag_list ) {
$utility_text = __( 'This entry was posted in %1$s and tagged %2$s.', 'twentytwelve' );
} elseif ( $categories_list ) {
$utility_text = __( 'This entry was posted in %1$s on %3$s.', 'twentytwelve' );
} else {
$utility_text = __( 'This entry was posted on %3$s.', 'twentytwelve' );
}