我想把我的照片放在帖子里,可能会超过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 );
有人能帮我一下这个密码吗?