如果你想獲得下4類從崗位全部精選圖片,然後如果你想,那麼你可以使用此圖像的實際寬度/高度,這可能是解決
$the_query = new WP_Query();
$the_query->query("cat=4&nopaging=true");
if ($the_query->have_posts()) :
while($the_query->have_posts()) : $the_query->the_post();
if(has_post_thumbnail()) :
the_post_thumbnail();
endif;
endwhile;
endif;
wp_reset_postdata();
:
$image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'single-post-thumbnail');
?>
<img src='<?php echo $image[0]; ?>' />
<?php
只需更換the_post_thumbnail()函數即可。希望有所幫助!
來源
2012-10-13 04:16:52
loQ
只要我給它一個鏡頭我明天就回去工作我會讓你知道我的結果。謝謝! – jrojas
沒問題.. :) – loQ
我得到它顯示只是有另一個問題,我用什麼替換_post_thumnail()函數?非常感謝! – jrojas