워드프레스 썸네일 추출 도와주세요
본문
그누커머스 사용하고싶은데
기존에 그누커머스 없이 모든 포스트를 작성해놓은 지라.. 검색문제로 그냥 워드프레스로 작업중에 있는데요..
워드프레스 썸네일 추출이 안되네요.
이것 저것 다 해봤는데...
the_post_thumbnail() 이 전혀 반응이 없네요.
소스는 아래와 같구요.... 도움 부탁드립니다.
<?php
$args = array( 'posts_per_page' => 10, 'category' => '2754', );
$lastposts = get_posts( $args );
foreach ( $lastposts as $post ) :
setup_postdata( $post ); ?>
<div class="col-sm-6 col-md-3 col-xs-12">
<div class="thumbnail" >
<div class="caption"><h3><a href="<?php the_permalink(); ?>" class="meny1">
<b><?php the_title(); ?></b></a></h3></div><!-- .titlebox -->
<?php the_post_thumbnail('excerpt-thumbnail'); ?>
<p><?php the_excerpt(); ?></p>
<p><a href="<?php the_permalink(); ?>" class="btn btn-primary" role="button">Se på info</a> <a href="#" class="btn btn-default" role="button">kjøp</a></p>
</div>
</div>
<?php endforeach;
wp_reset_postdata(); ?>
답변 1
<?php the_post_thumbnail('excerpt-thumbnail'); ?>
대신에 아래와 같이 써보세요.
<?php echo get_the_post_thumbnail($post->ID); ?>
또는
<?php echo get_the_post_thumbnail($post->ID, 'excerpt-thumbnail'); ?>