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)?
CSS圖像調整大小工作完美!非常感謝 :) – Cynthia 2012-08-16 11:26:27