如何在父帖子类型模板中显示子帖子类型

时间:2016-04-05 作者:Thomas_Hoadley

我有一个自定义的帖子类型,叫做airports 它使用一个名为single-airports.php.

我创建了一个名为盖特威克的新机场,并创建了一个名为盖特威克北航站楼的子机场。

如何在Gatwick页面上显示Gatwick孩子的永久链接(single-airports.php).

我将非常感谢任何提供的帮助!

1 个回复
最合适的回答,由SO网友:Thomas_Hoadley 整理而成

经过一番挖掘,我找到了答案!

希望这对其他人有帮助!

编辑

Improved Answer!

<?php
$args = array( \'post_parent\' => get_the_ID(), \'post_type\' => \'airports\', \'posts_per_page\' => -1 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
?>

<h2><?php the_title(); ?></h2>
<a href="<?php the_permalink(); ?>">
    <button><?php _e(\'View\', \'text_domain\'); ?></button>
</a>

<?php endwhile;  wp_reset_postdata(); ?>

相关推荐

Taxonomy filter all children

我有一个自定义分类过滤器,它将过滤选定分类中的所有页面。我希望代码能够选择该分类法中的页面,以及千页的子页面。这是密码。add_action(\'restrict_manage_posts\', \'restrict_manage_posts_section\'); function restrict_manage_posts_section() { global $post_type; if ( is_object_in_taxonomy( $post_t