为了在WordPress管理媒体库中显示新的图像维度选项,您需要使用image_size_names_choose
筛选以为其指定名称。
因此,函数中的代码。php应该如下所示:
if ( function_exists( \'add_image_size\' ) ) {
add_image_size( \'single-post-medium\', 515 );
add_image_size( \'single-post-small\', 250 );
}
add_filter( \'image_size_names_choose\', \'my_custom_sizes\' );
function my_custom_sizes( $sizes ) {
return array_merge( $sizes, array(
\'single-post-medium\' => __(\'Your Medium Size Name\'),
\'single-post-small\' => __(\'Your Small Size Name\'),
) );
}
如果它们没有立即显示,您可能需要先发布图像,然后返回媒体库并再次检查。