要在图像编辑器中编辑图像时重新生成自定义图像大小,必须使用update\\u option函数和add\\u image\\u size在wp\\u options表中添加以下选项。
Example :
$img_size_name = \'custom-size\'; // The new image size name.
if ( function_exists( \'add_theme_support\' ) )
add_image_size($img_size_name, 100, 100 , true);
update_option($img_size_name.\'_size_w\', 100);
update_option($img_size_name.\'_size_h\', 100);
update_option($img_size_name.\'_crop\', 1);