wp_image_editor_supports

函数
wp_image_editor_supports ( $args = array() )
参数
  • (string|array) $args Optional. Array of arguments to retrieve the image editor supports. Default empty array.
    Required:
    Default: array()
返回值
  • (bool) True if an eligible editor is found; false otherwise.
定义位置
相关方法
wp_image_editorwp_get_image_editorwp_cache_supportswp_ajax_image_editorwp_timezone_supported
引入
3.5.0
弃用
-

wp_image_editor_supports: 这个函数用于检查某个图像编辑器是否支持某个功能。它需要两个参数,图像编辑器对象和要检查的特性,如果该特性被支持,则返回true,否则返回false。

测试是否有一个编辑器支持给定的mime类型或方法。

function wp_image_editor_supports( $args = array() ) {
	return (bool) _wp_image_editor_choose( $args );
}

常见问题

FAQs
查看更多 >