← WordPress

Últimos posts daquela categoria

Lida 1723 vezes

Offline

tarantino 
Membro
Mensagens 35 Gostos 0
Troféus totais: 20
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Poll Voter Level 4 Level 3 Level 2 Level 1 10 Posts First Post

Boas,

Num espaço do layout ocupado por um rectângulo aprox de 300x300 tenho um espaço que quero aproveitar para fazer aparecer os últimos posts de uma determinada categoria em questão. Há algum plugin que faça isso?

Obrigado ppl!
Offline

cenourinha 
Elite
Mensagens 4094 Gostos 21
Troféus totais: 34
Trófeus: (Ver todos)
Mobile User Apple User Level 6 Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4

Código: [Seleccione]
<ul>
<?php $recent = new WP_Query("cat=1&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>

Substituis o cat=1 pelo número do id da categoria em questão e o showposts=10 pelo numero de posts que queres.
Offline

tarantino 
Membro
Mensagens 35 Gostos 0
Troféus totais: 20
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Poll Voter Level 4 Level 3 Level 2 Level 1 10 Posts First Post

 :obrigado:

Vou tentar!