0

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

4

1 回答 1

1

所以你不想要图片链接......?

那么也许...

你可以做你的内爆/爆炸,在 <li> 之前删除 <a> 标签。

然后在 < img 和 src 之间再次内爆/爆炸并插入 class="yourthumbnail"

然后在<li>中回显结果

并添加到您的 CSS:

img.yourthumbnail { 宽度:50px; 高度:50px;}

于 2012-08-16T01:17:34.080 回答