我有这个循环显示父亲的孩子虽然这是有效的。一般我希望这是动态转换的主要问题是,我只想使用它的ID显示当前页面的子项。
<?php
$args = array(
'post_type' => 'page',
'post_status' => 'publish',
'posts_per_page' => -1,
'post_parent' => ,
'orderby'=> 'menu_order',
'order'=> 'asc',
);
$query = new WP_Query($args);
$catNull = get_template_directory_uri();
echo '<ul class="all-service">';
while ($query->have_posts()) {
$query->the_post(); ?>
<li class="all-service-item">
<a href="<?php the_permalink(); ?>">
<div class="content">
<h4><?php the_title(); ?></h4>
<?php the_content(); ?>
</div></a>
</li>
<?php
}
wp_reset_postdata();?>
</ul>
我正在使用post_parent =>
,例如'1'
父级的ID,但我希望这基本上是the_ID()
,这是当前的ID问题,因为它呈现的所有ID都不是当前ID。不太确定我是否必须将the_ID
转换为变量以将其加载为字符串而不是常量。
下面的代码生成所有帖子和页面,然后显示循环中声明的内容
<?php
$args = array(
'post_type' => 'page',
'post_status' => 'publish',
'posts_per_page' => -1,
'post_parent' => the_ID,
'orderby'=> 'menu_order',
'order'=> 'asc',
);
$query = new WP_Query($args);
$catNull = get_template_directory_uri();
echo '<ul class="all-service">';
while ($query->have_posts()) {
$query->the_post(); ?>
<li class="all-service-item">
<a href="<?php the_permalink(); ?>">
<div class="content">
<h4><?php the_title(); ?></h4>
<?php the_content(); ?>
</div></a>
</li>
<?php
}
wp_reset_postdata();?>