Ben baktım ve baktım ve ben arıyordum ne bir cevap bulmaya çalıştım, ama bu bir cevap görmek için henüz var:
Ben tek bir kategorideki tüm mesajları alır ve içeride bir süre <li></li>
etiketleri onları üç görüntüleyen Wordpress döngü oluşturmak için çalışıyorum.
Çıktı bu gibi görünmelidir:
<li>My post title | Another Title | Third title</li>
<li>The next post title | A different post | Post #6</li>
<li>And so on | And so forth</li>
Bitmiş, ve sonra döngü çıkana kadar ben kategorideki tüm girişleri döngü için bu gerekiyor.
Benim kod tamamen bu noktada sigara çalışıyor, ama ben aşağıda çalışıyorum ne sağladık. Herkes bu herhangi bir çözüm varsa, ben bu kadar herhangi bir çözüm olmadan üç gün boyunca beni hounded gibi, size deli sahne vermek isterim.
<?php // Loop through posts three at a time
$recoffsetinit = '0';
$recoffset = '3';
query_posts('cat=1&showposts=0');
$post = get_posts('category=1&numberposts=3&offset='.$recoffsetinit.');
while (have_posts()) : the_post();
?>
<li>
<?php
$postslist = get_posts('cat=1&order=ASC&orderby=title');
foreach ($postslist as $post) : setup_postdata($post);
static $count = 0; if ($count == "3") { break; } else { ?>
<a href="<?php the_permalink() ?>"></a>
<?php $count++; } ?>
<?php endforeach; ?>
<?php $recoffsetinit = $recoffset + $recoffsetinit; ?>
</li>
<?php endwhile; ?>