我在 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)?