image_editor_save_pre

过滤钩子
apply_filters( 'image_editor_save_pre', $image, $attachment_id )
参数
  • (WP_Image_Editor) $image The image editor instance.
    Required:
  • (int) $attachment_id The attachment post ID.
    Required:
定义位置
相关勾子
image_editor_default_mime_typeexcerpt_save_prewp_image_editor_before_changeimage_editor_output_formattitle_save_pre
相关方法
wp_image_editor_supportswp_image_editorget_editable_rolesimage_edit_apply_changesget_editor_stylesheetswp_get_image_editor
引入
3.5.0
弃用
-

image_editor_save_pre。这个钩子允许你在使用WordPress图像编辑器保存图像数据之前对其进行过滤。这个钩子可以用来修改图片数据或添加自定义元数据到图片中。

过滤WP_Image_Editor实例,以便将图像流向浏览器。

$image = apply_filters( 'image_editor_save_pre', $image, $attachment_id );

常见问题

FAQs
查看更多 >