Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/01/2012, 13:42
lobos1981
 
Fecha de Ingreso: abril-2011
Ubicación: Colombia
Mensajes: 59
Antigüedad: 13 años
Puntos: 19
Respuesta: Mostrar autor en todos los post

El código está bn anexa esto debajo: By <?php echo get_the_author(); ?>

Osea:

Código PHP:
Ver original
  1. <?php
  2.                             $tag_list = get_the_tag_list( ' y etiquetada con ', ', ' );
  3.                             printf( __( 'Esta entrada fue publicada el %1$s. Esta categorizada bajo %2$s%3$s.' ),
  4.                                 get_the_time( get_option( 'date_format' ) ),
  5.                                 get_the_category_list( ', ' ),
  6.                                 $tag_list
  7.                             );
  8.                         ?>
  9. By  <?php echo get_the_author(); ?>