我试图在 wordpress 中显示子页面,让我们说页面“A”,并且只显示每个子页面的特色图像,而不显示内容或标题..
现在我有这个作为我的代码
<div id="primary" class="full-width">
<div id="content" role="main">
<?php query_posts(array('post_parent' => 7, 'post_type' => 'page')); while (have_posts()) { the_post(); ?>
<?php if ( has_post_thumbnail() ) {?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php echo the_post_thumbnail(large); ?>
</a>
<?php } else { ?>
<!-- Else Don't show anything -->
<?php } ?>
<?php } ?>
...
</div>
</div>
每次缩略图下方都是子页面的标题和其中的内容。
谢谢!