Listar posts relacionados e agrupados por tags
-
Boa tarde a todos!
O código abaixo relaciona e agrupa os posts, porém, antes de cada post escreve a tag, dessa forma:
———————————————-
COPOS (nome da tag)
– copo01 (post com tag copos)COPOS (nome da tag)
– copo02 (post com tag copos)
———————————————-Preciso que ele faça assim:
COPOS (nome da tag)
– copo01 (post com tag copos)
– copo02 (post com tag copos)JARRAS
– jarra01 (post com tag jarras)
– jarra02 (post com tag jarras)
———————————————-<?php query_posts(‘cat=13&tag=copos,jarras’);
while (have_posts()) : the_post();
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ‘ ‘;
}
}
?><h3><?php the_title(); ?></h3>
<?php
endwhile;
wp_reset_query();
wp_reset_postdata();$tag = ”;
$posttags = ”;
?>
———————————————-Agradeço toda ajuda!
Já tentei muitas coisas e nada funcionou.Obrigado!!
- O tópico ‘Listar posts relacionados e agrupados por tags’ está fechado para novas respostas.