Questions tagged «child-pages»

1
wp查询以获取当前页面的子页面
谁能帮我wp_query。 我正在制作一个模板文件/循环来创建和归档当前页面子页面的页面。 正如我在几页中使用的那样,此查询需要是自动的。 这是我在下面的查询,但只返回我的帖子而不是子页面。 <?php $parent = new WP_Query(array( 'post_parent' => $post->ID, 'order' => 'ASC', 'orderby' => 'menu_order', 'posts_per_page' => -1 )); if ($parent->have_posts()) : ?> <?php while ($parent->have_posts()) : $parent->the_post(); ?> <div id="parent-<?php the_ID(); ?>" class="parent-page"> <h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> <p><?php the_advanced_excerpt(); ?></p> </div> …

2
检查是否是父页面,是否有孩子,是否有孙子
我有一个默认页面模板,希望用于两种情况。为了简化客户端,我宁愿只使用一个页面模板。 这是我要完成的工作: if parent_page OR if child-page without children { display full-width-layout } if child page with children or if grandchild page { display sidebar-menu-layout } 这可能吗? 到目前为止,这是我尝试过的: if( is_page() && $post->post_parent > 0 ) { //display sidebar-menu-layout } else { //display full-width-layout } 它在顶层页面上一直有效,并显示全角布局。但是,我该怎么做才能确保侧边栏菜单布局仅显示在有孩子的孩子页面上和仅在grandchile页面上显示?对于没有孩子的孩子页面,显示全角布局。 提前致谢。我确信它有一个简单的解决方案,对于WP来说我才刚刚起步,所以仍在尝试找出可以做什么和不能做什么。

1
获取父页面URL以在子页面中显示
我想问一下,当我进入子页面时如何将链接返回到父页面?我宁愿使用适当的链接而不是<a href="javascript:history.back()">Go Back</a>方法。 问题与示例: 当我处于三级子页面中时,如何获得二级子页面的链接? Home > Parent Page > 1st Level Child Page > 2nd Level Child Page > 3rd Level Child Page Home > Parent Page > 1st Level Child Page(this page link show up) > Current Page Home > Parent Page(this page link show up) > Current …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.