<?php
$loop = new WP_Query( array(
\'post_type\' => \'yourPostTypeName\', /* edit this line */
\'posts_per_page\' => 15 ) );
?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php the_post_thumbnail(); ?>
<?php endwhile; ?>
这个代码也不起作用?我相信您列出的所有内容都很好(标题、摘录等);仅缩略图不显示?如何添加它们?你在编辑页面的右下角看到它们了吗?
如果没有,请将\\u post\\u缩略图功能更改为:
<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?>
echo $url
它是否显示缩略图的地址?
有两种选择:
a) 您没有添加缩略图(为此,请单击“设置特色图像”,选择/上载图像,然后单击“用作特色图像”,图像应显示在右下角),
b) 您没有循环(使用我在page-posttype.php上的第一个代码创建一个)。
Please click the icon under the arrows on the left side if somebody helps you, your accept rate is dramatically low and many people don\'t care about you.