SO网友:Md. Ehsanul Haque Kanan
有一个关于图像大小的项目正在进行中。你可以跟着它right here.
现在,您可以尝试使用shortcode_atts_gallery 滤器查看这些代码以获得提示:
/* Register shortcode_atts_gallery filter callback */
add_filter( \'shortcode_atts_gallery\', \'meks_gallery_atts\', 10, 3 );
/* Change attributes of wp gallery to modify image sizes for your needs */
function meks_gallery_atts( $output, $pairs, $atts ) {
/* You can use these sizes:
- thumbnail
- medium
- large
- full
or, if your theme/plugin generate additional custom sizes you can use them as well
*/
$output[\'size\'] = \'medium\'; //i.e. This will change all your gallery images to "medium" size
return $output;
}
您可以找到有关
shortcode_atts_gallery right here.