Cita:
Iniciado por zanguanga En mi opinión la mejor solución es crear un archivo
functions.php en tu tema si no lo tiene. Ver [url]http://codex.wordpress.org/Child_Themes#Using_functions.php[/url]
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í: [url]http://wordpress.org/support/topic/twenty-twelve-meta-data#post-3785633[/url]
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' );
}
Siento la tardanza en responder, tenía temas de trabajo.
Muchas gracias por tu ayuda. Ya está resuelto.
Mil gracias.