如何更改在WordPress标准图库中点击的图像的目标大小

时间:2014-04-18 作者:vega

我想在不使用其他插件的情况下使用标准Wordpress图库,并坚持使用图库短代码。因此,我知道我可以更改缩略图的大小,这些缩略图显示在图库网格中,例如[gallery size="xyz" link="file"].

但是我不满意Wordpress打开最大的文件,当点击其中一个缩略图时,我想声明一个不同的大小,这是我使用add_image_size( \'galleryimage\', 900, 900 ); 在我孩子的功能中。当然是php。

以下是我用于在静态页面上生成库的代码:

<?php

$people_attachments = new WP_Query( array(
\'post_type\' => \'attachment\',
\'post_status\' => \'inherit\',
\'posts_per_page\' => 0,
\'category_name\' => \'people\', // note: use category SLUG
) );

$people_id_array = array();

if ( $people_attachments->have_posts() ) : while ( $people_attachments->have_posts() ) : $people_attachments->the_post();

$people_id_array[] = get_the_ID();

endwhile; endif;
// Important!
wp_reset_postdata();

$people_ids = implode( \',\', $people_id_array );

echo do_shortcode( \'[gallery link="file" columns="5" order="DESC" orderby="ID" include="\' . $people_ids . \'"]\' );

?>
如何添加目标图像大小(单击时要显示的链接图像的大小)?

1 个回复
最合适的回答,由SO网友:Stephen S. 整理而成

我找到了一个解决方案functions.php 从下面的网站,看起来它会做的把戏。有关实施的更多详细信息,请参见:

以下片段:

function oikos_get_attachment_link_filter( $content, $post_id, $size, $permalink ) {

// Only do this if we\'re getting the file URL
if (! $permalink) {
    // This returns an array of (url, width, height)
    $image = wp_get_attachment_image_src( $post_id, \'galleryimage\' );
    $new_content = preg_replace(\'/href=\\\'(.*?)\\\'/\', \'href=\\\'\' . $image[0] . \'\\\'\', $content );
    return $new_content;
} else {
    return $content;
}
}

add_filter(\'wp_get_attachment_link\', \'oikos_get_attachment_link_filter\', 10, 4);

结束

相关推荐

Featured Images for Tags?

是否可以以某种方式为标记或自定义分类创建特征图像。为了便于解释,我将给出一个可能的功能示例。假设我正在运行一个网站,发布城市中最好的餐厅。我的一些标签可能是伦敦、巴黎、纽约等等。。。我有一个页面可以抓取这些标签并按字母顺序排序。但不仅仅是文本,它还将有标签名(例如伦敦)和该城市的图像。我知道这可以手动完成,但通过将图像附加到标记或自定义分类法,可以使过程变得更简单,尤其是在处理大量标记/自定义分类法时。我认为这可能更像是一个抽象的问题,但我很好奇是否有人遇到过任何成功做到这一点的博客或网站。