Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_ajax_cropped_attachment_id

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3954
3955                /**
3956                 * Filters the attachment ID for a cropped image.
3957                 *
3958                 * @since 4.3.0
3959                 *
3960                 * @param int    $attachment_id The attachment ID of the cropped image.
3961                 * @param string $context       The Customizer control requesting the cropped image.
3962                 */
3963                $attachment_id = apply_filters( 'wp_ajax_cropped_attachment_id', $attachment_id, $context );
3964      }
3965
3966      wp_send_json_success( wp_prepare_attachment_for_js( $attachment_id ) );
3967 }
3968
3969 /**
3970  * Ajax handler for generating a password.
3971  *
3972  * @since 4.4.0