Ver Mensaje Individual
  #6 (permalink)  
Antiguo 08/09/2014, 16:38
Avatar de zanguanga
zanguanga
Moderadora
 
Fecha de Ingreso: julio-2009
Ubicación: España
Mensajes: 1.686
Antigüedad: 14 años, 9 meses
Puntos: 429
Respuesta: Modificación tema wordpres.com Colorful-Delight

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
  1. // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
  2.     if ( $tag_list ) {
  3.         $utility_text = __( 'This entry was posted in %1$s and tagged %2$s.', 'twentytwelve' );
  4.     } elseif ( $categories_list ) {
  5.         $utility_text = __( 'This entry was posted in %1$s on %3$s.', 'twentytwelve' );
  6.     } else {
  7.         $utility_text = __( 'This entry was posted on %3$s.', 'twentytwelve' );
  8.     }
__________________
Mi blog personal | Mi G+

Última edición por zanguanga; 08/09/2014 a las 16:44