2012-08-15 83 views
0

我在Buddypress安裝上使用BP Album插件。如何在主頁上調整Buddypress BP Album縮略圖大小的縮略圖大小?

使用下面的代碼,我可以在主頁上的一個塊顯示最近的圖片上傳(最新照片):

<?php $args = array(
    'action' => bp_album_picture, 
    'max' => 5 
); 
?> 

    <?php if (bp_has_activities($args)) : ?> 

     <ul id="image-strip"> 

     <?php while (bp_activities()) : bp_the_activity(); ?> 

      <li><?php echo implode(explode("</a>", bp_get_activity_content_body(), -1)); ?></li> 

     <?php endwhile; ?> 

     </ul> 

    <?php endif; ?> 

我的問題是,縮略圖是在BP指定的大小相冊設置(100 x 100像素)。

我怎樣才能讓最新的照片縮略圖具有不同的尺寸(例如50 x 50)?

回答

1

所以你不想要圖像鏈接...?

那麼也許......

你可以做你的破滅/爆炸,去除<一>標籤中,<李前>。

然後破滅/ < IMG和src之間再次爆發並插入類= 「yourthumbnail」

然後呼應的結果在< LI>

,並加入到你的CSS:

IMG。 yourthumbnail { width:50px; height:50px; }

+0

CSS圖像調整大小工作完美!非常感謝 :) – Cynthia 2012-08-16 11:26:27