WordPress query_posts()

时间:2013-05-14 10:45:16

标签: wordpress

您好我是Wordpress的新手,但我设计了一些元素,并且最近有帖子。我的问题是,我可以将它们重复用于5个帖子吗?谢谢:))

<div id="main_content">
    <h2>Latest Products</h2>

    <div class="latest_products">
        <div class="group">
            <?php query_posts("post_per_page=1"); the_post(); ?>
            <h3 class="stick_note"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
            <div class="pro_content">
                <div class="product_thumbnail"> <?php the_post_thumbnail('thumbnail'); ?> </div>
                <p><?php the_excerpt(); ?></p>
            </div>
        </div>
    </div> <!-- END LATEST PRODUCTS -->


</div> <!-- END Main Content -->

2 个答案:

答案 0 :(得分:0)

您忘记实施The Loop(点击查看详细信息)。

完整的Wordpress循环如下:

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
   ...render your post here, it will keep repeating...
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>

由于您没有实现实际循环,因此只能渲染1个帖子。

答案 1 :(得分:0)

您可以使用:

get_archives('postbypost', 5);

OR

query_posts("showposts=5");
这对你有帮助吗?在你的问题中更具体。

你可以在wordpress的文档中找到答案: http://codex.wordpress.org/Template_Tags/get_posts http://codex.wordpress.org/Template_Tags/query_posts http://codex.wordpress.org/Template_Tags/wp_get_archives

修改

$args = array('numberposts' => 5, 'order'=> 'ASC');
$postslist = get_posts( $args );

<强> EDIT2:

你可以这样做:

$args = array('numberposts' => 5, 'order'=> 'ASC');
$postslist = get_posts( $args );
foreach( $postslist as $post ) : setup_postdata($post); ?>
  <li>
     <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  </li>
<?php endforeach; ?>