Depén del tema.
Normalment has de modificar els fitxers, index.php, single.php i page.php.
Si em dius quin tema tens, et puc dir què has de fer exactament,
Doncs tinc el GlossyBlue 1.4.
Si vols que aparegui en portada el nom de l’autor, hauràs de modificar el fitxer index.php:
En la línia on posa
<span class="post-cat"><?php the_category(', ') ?></span> <span class="post-comments"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></span>
hauràs de posar:
<span class="post-cat"><?php the_category(', ') ?> | Escrit per <?php the_author(); ?></span> <span class="post-comments"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></span>
Si a més a més vols que aparegui l’autor també quan estan llegint l’entrada, aleshores hauràs de modificar el fitxer single.php:
On posa:
<span class="post-cat"><?php the_category(', ') ?></span> <span class="mini-add-comment"><a href="#respond">Add comments</a></span>
hauràs de posar:
<span class="post-cat"><?php the_category(', ') ?> | Escrit per <?php the_author(); ?></span> <span class="mini-add-comment"><a href="#respond">Add comments</a></span>
salut!
Sé que fa força dies d’aquest tema però fins avui no m’hi he posat.
Ha funcionat a la primera! Moltes gràcies!