【问题标题】:how do I display more posts with paging in wordpress site?如何在 wordpress 网站中显示更多带有分页的帖子?
【发布时间】:2012-02-03 11:50:09
【问题描述】:

我正在开发 wordpress 网站,我在主页上显示最新的 3 个帖子项目(基于类别),我想提供“更多新闻”链接以查看所有在单独页面中分页的帖子.. 我该怎么做显示吗?

【问题讨论】:

    标签: wordpress


    【解决方案1】:
    <?php 
    query_posts( 'cat=-category_id&posts_per_page=3' );
    while (have_posts()) : the_post();
    the_title();
    the_content( 'Read the full post »' ); or the_excerpt();
    endwhile;
    wp_reset_query();
    <a href="pass category url">Caegory Link</a>
    ?>
    

    对于分页,你可以使用 wp page navi 插件。

    【讨论】:

      猜你喜欢
      • 2016-04-10
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2023-01-09
      • 1970-01-01
      • 2013-03-07
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多