wp_ajax_cropped_attachment_id

wp_ajax_cropped_attachment_id

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_ajax_cropped_attachment_id') is found 1 times:

  • /wp-admin/includes/ajax-actions.php line 4100
    4096
    4097
    4098
    4099
    4100
    4101
    4102
    4103
    4104
    4105
    4106
                 *
                 * @param int    $attachment_id The attachment ID of the cropped image.
                 * @param string $context       The Customizer control requesting the cropped image.
                 */
                $attachment_id = apply_filters( 'wp_ajax_cropped_attachment_id', $attachment_id, $context );
        }
     
        wp_send_json_success( wp_prepare_attachment_for_js( $attachment_id ) );
    }
     
    /**