在WordPress中,要调用一个父级Page页面所属的子页面的内容,你可以使用WordPress的WP_Query类来查询子页面。以下是一个示例代码:

wordpress父级Page页面调用所属Page子页面内容

<?php
// 获取当前页面的ID
$current_page_id = get_the_ID();

// 查询子页面
$args = array(
    'post_type'      => 'page', // 页面类型
    'post_parent'    => $current_page_id, // 父级页面ID
    'posts_per_page' => 1 // 获取所有子页面
);

$child_pages = new WP_Query($args);

// 循环遍历子页面并显示内容
if ($child_pages>have_posts()) :
    while ($child_pages>have_posts()) : $child_pages>the_post();
        // 显示子页面的标题和内容
        the_title();
        the_content();
    endwhile;
endif;

// 恢复原始查询
wp_reset_postdata();
?>

将这段代码放在父级Page的模板文件中,它将查询并显示该父级Page的所有子页面的标题和内容。记得根据你的主题和需求进行样式和布局的调整。