好的,我找到了解决办法。我真正需要的是“pagename”参数中的父页面slug。
\'pagename\'=> \'investor-relations/current\'
和工作解决方案:
<?php
$investor_content_query = new WP_Query( array(
\'pagename\'=> \'investor-relations/current\'
) );
if ( $investor_content_query->have_posts() ) {
while ( $investor_content_query->have_posts() )
{
$investor_content_query->the_post();
the_content();
}
}
wp_reset_postdata();
?>