Ver Mensaje Individual
  #7 (permalink)  
Antiguo 09/09/2014, 15:30
xavinet
 
Fecha de Ingreso: septiembre-2011
Mensajes: 17
Antigüedad: 12 años, 7 meses
Puntos: 0
Respuesta: Modificación tema wordpres.com Colorful-Delight

Cita:
Iniciado por zanguanga Ver Mensaje
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
  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.     }
Siento la tardanza en responder, tenía temas de trabajo.

Muchas gracias por tu ayuda. Ya está resuelto.

Mil gracias.