如何在帖子类型中显示特色图像?

时间:2011-02-22 作者:Jeff

我有一个单一的posttype。php和我正试图找出如何显示图像

2 个回复
最合适的回答,由SO网友:t31os 整理而成

您需要的一切都可以在Codex文档页面上找到,以获取后期缩略图
http://codex.wordpress.org/Post_Thumbnails

特别是我认为你在寻找。。

<?php the_post_thumbnail(); ?>

SO网友:Wordpressor

<?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.

结束

相关推荐