Wordpress为显示子页面的自定义循环添加分页

时间:2011-12-30 14:23:00

标签: php wordpress pagination

我有一个页面(不是文章)有n个子页面。 在主页面中,我需要显示子页面的最多3个标题,并为另一个插入分页。

我该怎么做?

这是我现在的简单代码:

<?php 
    $parent_id = 14; //main page id
    $pages = get_pages( array( 'sort_column' => 'menu_order', 'numberposts' => 3, 'child_of' => $parent_id ) );
    foreach ( $pages as $page ) : ?>
        <div class="item">
            <div class="item-title">
                <h2><a href="<?php echo get_permalink( $page->ID ); ?>"><?php echo $page->post_title; ?></a></h2>
            </div>
        </div>
    <?php endforeach; ?>

感谢。

3 个答案:

答案 0 :(得分:3)

我自己解决了,解决方案是使用 wp_query()来创建一个使用 get_pages()的新循环。

这里是来自Avigma Technology的Preeti Dua的页面标题和内容的新代码:

    <?php

    // Pagination variable
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    // The Query
    $the_query = new WP_Query( array( 'post_parent' => 782, 'post_type' => 'page', 'paged' => $paged) );

    // The Loop
    if($the_query->have_posts()) : while($the_query->have_posts()) : $the_query->the_post();
    global $post;
    $thePostID = $post->ID; /* this variabled is used if you need to get custom fields of the subpage */
        ?>
    <div id="side-post-title">
        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    </div>

     <div id="side-post-excerpt">
               <?php the_excerpt(); ?>

             <a href="<?php echo get_permalink( $page->ID ); ?>"> <div id="read-more"> 
                       <img src="/wp-content/uploads/2012/10/read-more-btn.png"/></div> </a>                                                          
      </div> 



<?php endwhile; endif; ?>

<nav class="navigation">
   <div style="float:left;"> <?php next_posts_link('Show older', $the_query->max_num_pages) ?></div>
   <div style="float:right;"> <?php previous_posts_link('Show newer') ?></div>
</nav>

答案 1 :(得分:0)

不确定,

但请尝试以下插件

http://wordpress.org/extend/plugins/wp-pagenavi/

答案 2 :(得分:0)

如果您想在分页按钮中添加子页面标题,说明甚至缩略图,您可以使用ACP免费Wordpress插件:http://wordpress.org/plugins/advanced-content-pagination/