如何在两列布局类型中进行wordpress post设计

时间:2013-06-27 09:41:56

标签: php wordpress

我的网站是Career Tracker

我想设计wordpress像列2列

喜欢这个

post1     post2

post3     post4

post5     post6

知道如何在wordpress中制作这个......

我知道简单的方法

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

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

 }

但我希望将结果显示在两列中。

1 个答案:

答案 0 :(得分: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; ?>