2015-02-07 2 views
0

나는 게시판 축소판과는 별도로 설정되어 있습니다. 현재 잘 작동하는 자리 표시 자 이미지를 사용하고 있지만, 추천 이미지 양식을 배경으로 게시물을 사용하고 싶습니다. 여기 내 코드는 ...Wordpress post thumbnail problems

<?php 

$args = array('posts_per_page' => 10, 'category' => 3); 

$myposts = get_posts($args); 
foreach ($myposts as $post) : setup_postdata($post); ?> 

     <div class="box" style="background-image:url('<?php the_post_thumbnail(); ?>');"> 
      <div class="overlay"> 
       <div class="buttonContainer"> 
        <a href="<?php the_permalink(); ?>"> 
         <button>preview</button> 
        </a> 
       </div> 
      </div> 
     </div> 


<?php endforeach; 
wp_reset_postdata();?> 

브라우저에서 이것을 보면 다음과 같이 인쇄됩니다 ... ');"> 이미지가 없습니다 ... 어디에서 잘못 될 것 같습니까?

+0

'echo the_post_thumbnail()'을 (를) 사용해 보셨습니까? – pbaldauf

+0

내가했는데 아무 것도 나타나지 않는다 ... – coder123

+0

밖으로 나가자.''style' 태그에서'' 태그를 붙여서 직접 볼 수 있습니다. – Stickers

답변

1

the_post_thumbnail()은 다음과 같은 img 요소를 반환합니다.

<img src="some-image-url' /> 

이것은 배경 이미지로 전달하려는 것이 아닙니다. 다음 [0] 첨부 파일의 URL을 얻을 $ img_data 에코 할 수

$attachment_id= get_post_thumbnail_id(the_ID()); 
$img_data = wp_get_attachment_image_src($attachment_id, the size you want); 

:

당신은 뭔가를해야합니다.

+0

배경 코드로 어떻게 소개 할 수 있는지 위의 코드에서 물어볼 수 있습니까? – coder123

+1

the_post_thumbnail()을 echo $ img_data [0]으로 바꿉니다. – bobdye