0

我的问题是如何<td> 以动态方式创建两行两列,从query_post()

我花了一些时间query_post()在 WordPress 中创建这个:

在此处输入图像描述

我犯了一个严重的错误,这是片段:

http://pastebin.com/cp6RSTQQ

这给了我一个名为watch类别的最新帖子,以 这种方式使用:offsetquery_post()

<?php
            $args = array( 'posts_per_page' => 1, 'order'=> 'DESC','category' => 'watch', 'orderby' => 'post_date','offset' => 0 );
            $postslist = get_posts( $args );
            foreach ($postslist as $post) :  setup_postdata($post); ?> 

            <td class="leftBoxes">

            <div class="imgMargin"> <?php the_post_thumbnail(); ?> </div>
           <br>

            <div class="boxScrollsBlogsView">
            <h2><?php the_title(); ?> </h2>
            <P> 
            <?php the_excerpt(); ?> 
            </P>
            <h3><a href="<?php the_permalink(); ?>"> ReadMore</a></h3>
            </div>

            </td>
            <?php endforeach; ?>

在我想继续前进之后,我意识到我无法 按照我编写代码的方式进行分页!

我在 wordpress 网站上看过这个问题,但我不明白他是如何诚实地做到这一点的!

4

1 回答 1

0

刚刚删除了右边的框,我将代码更改为如下所示

<?php
        $args = array( 'posts_per_page' => 4, 'order'=> 'DESC','category' => 'watch', 'orderby' => 'post_date','offset' => 0 );
        $postslist = get_posts( $args );
        foreach ($postslist as $post) :  setup_postdata($post); ?> 

        <td class="leftBoxes">

        <div class="imgMargin"> <?php the_post_thumbnail(); ?> </div>
       <br>

        <div class="boxScrollsBlogsView">
        <h2><?php the_title(); ?> </h2>
        <P> 
        <?php the_excerpt(); ?> 
        </P>
        <h3><a href="<?php the_permalink(); ?>"> ReadMore</a></h3>
        </div>

        </td>
        <?php endforeach; ?>

它会一个接一个地创建一个 TD,最终它会进入新行进行行

于 2013-06-22T23:46:25.870 回答