我想创建一个带有自定义文件名后缀的新自定义图像大小。
WordPress将文件名生成为:image-name-400x400.jpg
对于我的自定义图像大小,我需要将其命名为:image-name-custom.jpg
该怎么做?
这是放置在functions.php中的开始代码:
//create custom image size
add_action( 'after_setup_theme', 'theme_setup' );
function theme_setup() {
if ( function_exists( 'add_theme_support' ) ) {
add_image_size( 'custom', 400, 400, true );
}
}
谢谢