这是迄今为止对我来说最有效的解决方案,它是我在网上找到的多种解决方案的组合,
使用此代码,您可以显示带有锚定链接的子页面特色图像和标题。
这也适用于子页面和子页面。
<!--Child Page Thumbnails Start-->
<?php
$subs = new WP_Query(
array(
\'post_parent\' => $post->ID,
\'post_type\' => \'page\',
\'meta_key\' => \'_thumbnail_id\'
)
);
if( $subs->have_posts() ) :
while( $subs->have_posts() ) :
$subs->the_post();
echo \'<article class="span_8 col clr-margin products-thumb"> <a href="\'.get_permalink().\'" title="\'.get_the_title().\'">\'.get_the_post_thumbnail().\'</a>\'.\'<br/><h2><a href="\'.get_permalink().\'">\'.get_the_title().\'</a></h2></article>\';
endwhile;
endif;
wp_reset_postdata(); ?>
<!--Child Page Thumbnails End-->