Query_posts kullanarak Kategoriler itibaren Wordpress Görme Grup / Ayrı outputted Mesajlar

0 Cevap php

Benim wordpress sitesi, ben kategori artan sıralama kriteri Mesajları çıktısı yaşıyorum ve bu iyi çalışıyor.

The code for accomplishing this so far is:

<?php query_posts('cat=1,2,3&showposts=5&orderby=category&order=ASC'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
    <?php the_excerpt() ?>
  </li>
<?php endwhile; endif; ?>

Şu anda bütün Mesajları büyük olan yükselmiş kategoriye göre sıralanır bir grup olarak gösterilir ... ama görsel kategorilerini ayrı çalışıyorum.

Yani, benim kod doğru gibi smth çalışmak:

Cat1 Post1 Cat1 Post2 Cat2 Post1 Cat2 Post2 Cat2 Post3 Cat3 Post1 ... and so on

Ben bu gibi onları ayırmak istiyorum:

CATEGORY ONE:
Cat1 Post1 Cat1 Post2 

CATEGORY TWO:
Cat2 Post1 Cat2 Post2 Cat2 Post3 

CATEGORY THREE:
Cat3 Post1 ... and so on

Bu ben query_posts döngü falan ekleyebilirsiniz paramater mı? Başarmak kolay bir şey gibi görünüyor ama ben nasıl hiçbir fikrim yok! Herhangi takdir yardımcı olur.

0 Cevap