WordPress:如何创建带有自定义文件名后缀的自定义图像大小

时间:2018-09-13 09:37:05

标签: wordpress filenames thumbnails image-size media-library

我想创建一个带有自定义文件名后缀的新自定义图像大小。

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 ); 
    }
}

谢谢

0 个答案:

没有答案