WordPress父页和子页摘录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress父页和子页摘录相关的知识,希望对你有一定的参考价值。

Snippet for a parent page to list child pages with excerpts.
  1. <div class="entry-content entry">
  2.  
  3. <?php the_content(); ?>
  4.  
  5. </div><!-- .entry-content -->
  6.  
  7. <!-- list child-pages with links and excerpt -->
  8. <?php global $post; ?>
  9. <?php $pages = get_pages( array( 'child_of' => $post->ID, 'orderby' => 'menu_order' ) ); ?>
  10. <?php if ( $pages ) : ?>
  11. <?php $inner_query = new WP_Query("post_type=page&posts_per_page=-1&post_parent={$id}&orderby=menu_order&order=ASC");
  12. while ($inner_query->have_posts()) : $inner_query->the_post(); ?>
  13. <h2 class="children-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  14. <?php the_excerpt(); ?>
  15.  
  16. <?php endwhile; endif; ?>
  17.  
  18. <?php wp_reset_query(); ?>

以上是关于WordPress父页和子页摘录的主要内容,如果未能解决你的问题,请参考以下文章

WordPress子页和父页菜单

在Wordpress中打开父页/子页时显示子页

Wordpress-检查子页是否属于父页

在父页中列出WordPress子页

Wordpress显示子页和同级页的列表(如果有的话)

在Wordpress中显示顶层和子页