Duplica o nome do autor. Aparece por exemplo:
Economia
Luiz José
Artigo 01
Luiz José
Artigo 02
Ana Silveira
Artigo 01
…
Obrigado, Dhony, mas ainda não consegui.
Estou inserindo este código para a listagem, mas o que acontece é que se houver mais de um artigo por autor, ele duplica o nome dele. Há alguma maneira de deixar isso automático sem que toda vez eu tenha que escrever o nome da categoria?
Obrigado.
<h3>Economia</h3>
<?php query_posts('cat=13'); ?>
<?php while (have_posts()): the_post(); ?>
<li><?php the_author(); ?><br /><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
<br />
<h3>Empreendedor</h3>
<?php query_posts('cat=8'); ?>
<?php while (have_posts()): the_post(); ?>
<li><?php the_author(); ?><br /><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
<br />
<h3>Empreendedor</h3>
<?php query_posts('cat=11'); ?>
<?php while (have_posts()): the_post(); ?>
<li><?php the_author(); ?><br /><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>