我试图显示我的当前页面(Licensicatura en Ciencias del Arte y Gestión Cultural)称为“的子项”;基础设施“;这是slug。我不知道我的代码有什么问题。它不返回页面。我猜pagename不起作用了。。。
<?php
$pageid = $post->ID;
$arg1 = array(
\'post_type\' => \'page\',
\'posts_per_page\' => 1,
\'post_parent\' => $pageid,
\'pagename\' => \'infraestructura\',
);
$child = new WP_Query( $arg1 ); ?>
<div class="wrapp">
<?php echo $pageid; ?>
<?php if ($child->have_posts()) :?>
<?php while ($child->have_posts()) : $child->the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else: ?>
no page
<?php endif; wp_reset_postdata(); ?>
</div>
这是我的页面
注意:我有相同的多页结构,这就是为什么我需要SLUG或名称来工作