PHP 带有子页面摘录的WordPress父页面

Posted

tags:

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

<div class="entry-content entry">

					<?php the_content(); ?>

				</div><!-- .entry-content -->

				<!-- list child-pages with links and excerpt -->
				<?php global $post; ?>
				<?php $pages = get_pages( array( 'child_of' => $post->ID,  'orderby' => 'menu_order' ) ); ?>
				<?php if ( $pages ) : ?>
  	        <?php $inner_query = new WP_Query("post_type=page&posts_per_page=-1&post_parent={$id}&orderby=menu_order&order=ASC");
                while ($inner_query->have_posts()) : $inner_query->the_post(); ?>
	                    <h2 class="children-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
	                    <?php the_excerpt(); ?>

		        <?php endwhile; endif; ?>

		        <?php wp_reset_query(); ?>

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

PHP WordPress子页面和父页面菜单

PHP 列出父页面中的WordPress子页面

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

PHP Wordpress:仅列出特定父页面的子页面

php WordPress:由Matovu Richard自动将父页面模板应用于子页面

PHP 将摘录添加到WordPress页面