wp_create_thumbnail

函数
wp_create_thumbnail ( $file, $max_side, $deprecated = '' )
参数
  • (mixed) $file Filename of the original image, Or attachment ID.
    Required:
  • (int) $max_side Maximum length of a single side for the thumbnail.
    Required:
  • (mixed) $deprecated Never used.
    Required:
    Default: (empty)
返回值
  • (string) Thumbnail path on success, Error string on failure.
相关
  • image_resize()
定义位置
相关方法
wp_create_tagwp_create_termwpmu_create_blogwp_ajax_set_post_thumbnailwp_ajax_set_attachment_thumbnail
引入
1.2.0
弃用
3.5.0

wp_create_thumbnail: 这是一个为文章或页面创建一个新的缩略图的函数。它可以用来在全尺寸图片的基础上自动生成一个缩略图。

这曾经被用来从一个给定最大边长的图像中创建一个缩略图。

function wp_create_thumbnail( $file, $max_side, $deprecated = '' ) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'image_resize()' );
	return apply_filters( 'wp_create_thumbnail', image_resize( $file, $max_side, $max_side ) );
}

常见问题

FAQs
查看更多 >