doucigua0278 2016-09-09 14:53
浏览 65
已采纳

如何使用Bootstrap在表格中显示WordPress帖子?

I want to display my recent blog posts in this specific layout in WordPress. Here it is below:

1|2|3
-----
4|5|6

Here is my code so far.....

<div class="container post_container">
    <div class="row">
        <div class="col-xs-12">
        <h1>Recent Posts</h1>

            <?php 

            $recentPost = new WP_Query('type=post&posts_per_page=6&order=ASC&');


            if(have_posts()) {
                while($recentPost->have_posts()) {
                    $recentPost->the_post(); ?>


        <br>
        <br>

        <div class="posts_table">
            <--Where all recent posts will be displayed-->
        </div>



                    <?php

                }
            }



             ?>

I want to use the WordPress loop display the last six posts going in chronological order and I have no idea how to create it and very confused. I have zero idea if I should be using HTML table or Bootstrap grids or both?

  • 写回答

2条回答 默认 最新

  • dongyin8009 2016-09-09 15:37
    关注

    You could use the WP_Query argument as an array, it's much less confusing.

    Since you want to fetch the posts in a chronological order, order by date. Your instance of the class WP_Query becomes:

    $recentPost = new WP_Query(
        array(
            'type'           => 'post',
            'posts_per_page' => 6,
            'order'          => 'ASC',
            'orderby'        => 'date' // Order by date!
        )
    );
    

    Then I see you're using Bootstrap with rows and columns.

    First step, create everything around the while() loop:

    <?php 
    
    
        if(have_posts()) {
    
            // First, build parent DIV element outside the while() loop
            ?>
    
            <div class="row posts_table">
    
            <?php
    
            // Setup the counter
            $counter = 0;
    

    Second, build everything inside the while loop:

            // Iterate over the posts
            while($recentPost->have_posts()) {
    
                // Get next
                $recentPost->the_post();
    
                // Render post content here
                // Bootstrap uses 12 columns, we want 3 blocks. 12/3 = 4 thus use cols-xs-4.
                ?>
    
                <div class="cols-xs-4">
                    <?php the_title(); ?>
                </div>
    

    This is the tricky part. After three posts, we're building a new row element. Why? Because Bootstrap was designed to use 12 columns in a row, no more.

    If you want to refactor this code later on, let's say you want 9/15 posts per page, you can easily update the posts_per_page value from the array inside WP_Query without manually putting in a break at 3, 6, 9 and so on.

                <?php
    
                // Increment for next post
                $counter++;
    
                // Use the modulo to break a Bootstrap row and start a new one
                // The HTML inside this control flow will be printed every third post (every third iteration).
                if($counter % 3 == 0){
                    ?>
                    </div>
                    <div class="row posts_table">
                    <?php
                }
    
            }
    

    Finally, we only have to close our last .row.posts_table element.

            ?>
    
            </div>
            <!-- end of .row.posts_table -->
    
            <?php
        }
    
    
     ?>
    

    Also, check out the WordPress documentation on WP_Query, especially the WP_Query orderby part.

    I don't know if .posts_table has any meaning to the website, if not => it can be removed.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 为啥画版图在Run DRC会出现Connect Error?可我Calibre的hostname和计算机的hostname已经设置成一样的了。
  • ¥20 网站后台使用极速模式非常的卡
  • ¥20 Keil uVision5创建project没反应
  • ¥15 mmseqs内存报错
  • ¥15 vika文档如何与obsidian同步
  • ¥15 华为手机相册里面的照片能够替换成自己想要的照片吗?
  • ¥15 陆空双模式无人机飞控设置
  • ¥15 sentaurus lithography
  • ¥100 求抖音ck号 或者提ck教程
  • ¥15 关于#linux#的问题:子进程1等待子进程A、B退出后退出(语言-c语言)