更改内容中的图像大小

时间:2015-07-23 作者:Luciano Oliveira

我想把我的照片放在帖子里,可能会超过800px;

为此,我使用了一个调整图像大小的函数here 我试图在帖子中为我的拇指创建一个可以调整大小的函数,更多的问题是没有调整大小

function resizeThumb($html, $post_id, $post_thumbnail_id, $size, $attr){
$image = get_post_thumbnail_id();
$thumb = vt_resize( $image, \'\', 850, 600, true );
$html = \'<img src="\' . $thumb[url] . \'" alt="\' . $alt . \'" class="img-responsive" />\';
return $html;
} 
add_filter( \'post_thumbnail_html\', \'resizeThumb\', 10, 5 );
有人能帮我一下这个密码吗?

1 个回复
SO网友:mrbobbybryant

您是否考虑过使用add\\u image\\u size?看看吧here.

它将允许您以各种方式裁剪图像。它还允许您使用标准的\\u post\\u缩略图,并在前端输出时将自定义图像大小传递给它。

我还注意到你在内容里说的。一种方法是使用上述函数并将其包装成一个短代码。然后可以将所需参数传递给shortcode,以输出正确大小的图像。

结束

相关推荐

Search with filters and title

我想搜索custom_post 按标题和ACF字段。所以,我用了WP_Query WordPress函数,但我不能按标题过滤,只能按过滤器过滤。当我提交表单时,我有这样的URL:http://example.com/?s=titre&filter1=condition1&filter2=condition2&filter3=condition3 我的代码:$title = $_GET[\'s\']; $args = array( \'pagenam