2013-06-27 52 views
-4

我的網站是Career Tracker如何使WordPress的設計後兩個欄佈局後型

我想設計WordPress的柱狀明智的2列

喜歡這個

post1  post2 

post3  post4 

post5  post6 

任何想法如何讓這個......在wordpress中?

我知道簡單的方法

query_posts('category_name=Bank Jobs&showposts=10'); 

while (have_posts()) : the_post(); 
{ 

} 

,但我想在兩列中顯示的結果。

+1

您需要設計師 – swapnesh

+0

我是一名開發人員和設計師太....我想知道如何編寫查詢? – Savan

+0

query_posts('category_name = Bank Jobs & showposts = 10'); (have_posts()):the_post(); { } 我知道這種方式,但我想在兩個柱子 – Savan

回答

0
$count = 0;  
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?> // this is your loop 
     if($count == 2){ // here is the condition that when the count comes to 2 it will break th e line 
    echo '</div><div class="right">'; $count = 0; 
} 
    echo $post->post_content(); // printing the content of post 

$count++; 
    <?php endwhile; endif; ?> 
+0

您應該使用$ count%2 == 0來處理超過2個帖子 –

+0

Thanx @SvenSchneider,但我想添加1 div像右div和離開div ...我該怎麼辦? – Savan

+0

這裏不需要,因爲每當'count'進入'2'時,我又設置了'$ count = 0;'。 :) –