0

我設置精選圖像的帖子,並顯示默認圖像,如果沒有設置。我的代碼在這裏...WordPress的特色圖像大小統一高度

<?php if (has_post_thumbnail()) { 
the_post_thumbnail('full', array('class' => 'img-responsive')); 
} else { ?> 
<img src="default-image.jpg" class="img-responsive" /> 
<?php } ?> 

問題很簡單。所有的圖像都是不同的高度。我希望他們都是統一的高度,所以我的引導網格均勻排列。

有什麼想法?大量的例子在線,但沒有與特色圖像和默認圖像。

回答

3

請您functions.php文件粘貼下面的代碼現在

add_image_size('image_size', 510, '520', true);//510 is width and 520 in height 

當過你上傳的WordPress郵寄任何圖像,它會自動調整爲510 * 520(但蜂保健完整圖像尺寸必須大於更大什麼比你想要的)

如何打電話請檢查下面

the_post_thumbnail('image_size', array('class' => 'img-responsive'));// image size is the parameter you pass in functions.php file you can add as many size as you want 
+0

,似乎工作。非常感謝。 – lowercase 2015-04-02 18:22:51

相關問題