wp_ajax_cropped_attachment_id

过滤钩子
apply_filters( 'wp_ajax_cropped_attachment_id', $attachment_id, $context )
参数
  • (int) $attachment_id The attachment ID of the cropped image.
    Required:
  • (string) $context The Customizer control requesting the cropped image.
    Required:
定义位置
相关勾子
wp_ajax_cropped_attachment_metadataajax_query_attachments_argswp_generate_attachment_metadatawp_ajax_nopriv_actiontwentyten_attachment_size
相关方法
wp_ajax_get_attachmentwp_ajax_upload_attachmentwp_ajax_save_attachmentwp_ajax_save_attachment_orderwp_ajax_query_attachmentswp_ajax_send_attachment_to_editor
引入
4.3.0
弃用
-

wp_ajax_cropped_attachment_id:当使用内置图像裁剪功能裁剪附件时,会在 WordPress 中触发此操作钩子。它允许开发人员访问裁剪后的附件 ID 并使用它执行其他处理或操作。

过滤裁剪图像的附件ID。

$attachment_id = apply_filters( 'wp_ajax_cropped_attachment_id', $attachment_id, $context );

常见问题

FAQs
查看更多 >