2014-01-18 50 views
5

我正在將我的主題與Bootstrap集成到WordPress中,我現在面臨着水平而不是垂直顯示帖子的挑戰。該設計使用3列。如何將WordPress帖子水平顯示爲3列?

張貼在這個網站 (http://perishablepress.com/two-column-horizontal-sequence-wordpress-post-order/) 兩列的解決方案是有益的,但有3列使用時,以前顯示的帖子它張貼重複。

這裏是我的代碼:

<div class="row"> 

    <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) == 0) : $wp_query->next_post(); else : the_post(); ?> 

    <div class="col-sm-4"> 
    <img src="<?php the_field('home_page_slider_image'); ?>" class="img-responsive" > 
    <h3><?php the_field('description'); ?></h3> 

    </div> 

    <?php endif; endwhile; else: ?> 
    <div>Alternate content</div> 
    <?php endif; ?> 

    <?php $i = 0; rewind_posts(); ?> 

    <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?> 

    <div class="col-sm-4"> 
    <img src="<?php the_field('home_page_slider_image'); ?>" class="img-responsive" > 
    <h3><?php the_field('description'); ?></h3> 
    </div> 

    <?php endif; endwhile; else: ?> 
    <div>Alternate content</div> 
    <?php endif; ?> 


    <?php $i = 0; rewind_posts(); ?> 

    <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?> 

    <div class="col-sm-4"> 
    <img src="<?php the_field('home_page_slider_image'); ?>" class="img-responsive" > 
    <h3><?php the_field('description'); ?></h3> 
    </div> 

    <?php endif; endwhile; else: ?> 
    <div>Alternate content</div> 
    <?php endif; ?> 



    </div> 

任何幫助將不勝感激。

謝謝。

回答

1

看看這個例子,它的工作就像你想要的,並根據這個例子來安排你的代碼。

$i = 1; 
echo "<div class='row'>\n"; 
while($i <= 10){ 

    echo " <div class='col-lg-4'></div>\n"; 
    if($i % 3 == 0) { echo "</div>\n<div class='row'>\n"; } 

    $i++; 
} 
echo "</div>\n"; 

http://codepad.org/Qesw28Cw

+0

你如何將它集成到代碼?我嘗試了幾種方法,但它不適合我。 –

1

我建立的HTML字符串到動態陣列,則have_posts()循環後回波的行。這將帖子數量除以4,然後將它們垂直排列在4列中。這裏是我的例子:

$query = new WP_Query(array(
         'post_status' => 'publish', 
         'orderby'  => 'title', 
         'order'   => 'ASC', 
         'posts_per_page' => -1 
         )); 

$post_count = $query->post_count; 
$posts_per_column = ceil($post_count/4);  

$rows = array();            
$count = 0; 
while ($query->have_posts()) 
{ $query->the_post(); 
    if($rows[$count] == ""){ $rows[$count] = '<div class="row">'; } 
    $rows[$count] = $rows[$count] . '<div class="col-sm-3">' . 
      '<div class="post-title"> 
      <a href="'.get_permalink().'">'.get_the_title().'</a></div>' . 
      '<div class="post-author">by '. get_the_author() .'</div></div>'; 
    $count++;       
    if ($count == $posts_per_column) { $count = 0; } 
} 

foreach ($rows as $row) { echo $row . '</div>'; } 
+0

使這3列,只需更改$ posts_per_column = ceil($ post_count/4);到$ posts_per_column = ceil($ post_count/3);和col類相應。 –

相關問題