目前我正在爲我的客戶做一個自定義的主題,我不是這方面的專家。我的問題是如何爲同一類別的帖子製作不同的風格。目前在我的主題拆分相同的類別發佈不同的樣式 - wordpress
開始了第一個帖子一個新的查詢
<?php query_posts('showposts=1&cat=videos&offset=0'); if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<div class="first-news">
<h2><a href="<?php the_permalink() ?><?php the_title(); ?></a></h2>
<?php if(has_post_thumbnail()) { ?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('video-thumb');?</a><?php} ?>
<?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,8); ?>
</div>
<?php endwhile; else: endif; ?>
然後再次啓動相同的查詢剩餘4個員額與另一個DIV和風格
<?php query_posts('showposts=4&cat=videos&offset=1'); if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<div class="second-news">
<h3><a href="<?php the_permalink() ?><?php the_title(); ?></a></h3>
<?php if(has_post_thumbnail()) { ?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('news-thumb'); ?></a><?php } ?>
<?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,8); ?>
</div>
<?php endwhile; else: endif; ?>
這個完美的工作,這是正確?我認爲有可能是一個很好的解決方案,將查詢後只有一次,得到所需數量從不同風格的同一類別的職位。 我要的是下面的圖片上。
我知道類別模板,林已經在我的主題上使用這個,我認爲這與我的問題沒有關係。我有更具體的。對不起,誤解我的問題 – Kanu 2012-07-13 06:48:36