wp_save_image_editor_file

过滤钩子
apply_filters( 'wp_save_image_editor_file', null, $filename, $image, $mime_type, $post_id )
参数
  • (bool|null) $override Value to return instead of saving. Default null.
    Required:
  • (string) $filename Name of the file to be saved.
    Required:
  • (WP_Image_Editor) $image The image editor instance.
    Required:
  • (string) $mime_type The mime type of the image.
    Required:
  • (int) $post_id Attachment post ID.
    Required:
定义位置
相关勾子
wp_theme_editor_filetypeswp_image_editor_before_changeimage_editor_save_preload_image_to_edit_filesystempathwp_opcache_invalidate_file
相关方法
wp_save_image_filewp_get_image_editorwp_ajax_image_editorwp_image_editorwp_save_imagewp_image_editor_supports
引入
3.5.0
弃用
-

wp_save_image_editor_file:这是一个 WordPress 函数,用于将图像编辑器中的修改保存到文件系统中。它接受一个图像编辑器对象和要保存的文件路径作为参数,并使用该对象的 save 方法将图像写入文件。

过滤是否要跳过保存图像文件。

返回一个非空值将使保存方法短路,而返回该值。

$saved = apply_filters( 'wp_save_image_editor_file', null, $filename, $image, $mime_type, $post_id );

常见问题

FAQs
查看更多 >