我通过反复试验创建了一个解决方案,不幸的是不得不求助于自定义字段。我为要显示的每个子元素添加了一个自定义字段,并使用了代码:
<?php
$args = array(
\'post_type\' => \'page\',
\'meta_key\' => \'xxxx\',
\'meta_value\' => \'xxxx\'
);
$myPages = new WP_Query($args);
while ($myPages->have_posts()) : $myPages->the_post();
echo "$post->post_title";
echo the_post_thumbnail();
endwhile;
wp_reset_postdata();
?>
这是通过导航到我想要显示的特定页面并创建一个自定义字段来完成的,该字段将元数据添加到页面中。