wp_create_file_in_uploads хук-событиеWP 2.1.0

Fires after the header image is set or an error is returned.

Использование

add_action( 'wp_create_file_in_uploads', 'wp_kama_create_file_in_uploads_action', 10, 2 );

/**
 * Function for `wp_create_file_in_uploads` action-hook.
 * 
 * @param string $file          Path to the file.
 * @param int    $attachment_id Attachment ID.
 *
 * @return void
 */
function wp_kama_create_file_in_uploads_action( $file, $attachment_id ){

	// action...
}
$file(строка)
Path to the file.
$attachment_id(int)
Attachment ID.

Список изменений

С версии 2.1.0 Введена.

Где вызывается хук

Custom_Image_Header::step_2()
wp_create_file_in_uploads
wp_ajax_crop_image()
wp_create_file_in_uploads
Custom_Background::handle_upload()
wp_create_file_in_uploads
Custom_Image_Header::step_3()
wp_create_file_in_uploads
Custom_Image_Header::ajax_header_crop()
wp_create_file_in_uploads
wp-admin/includes/class-custom-image-header.php 885
do_action( 'wp_create_file_in_uploads', $file, $attachment_id ); // For replication.
wp-admin/includes/ajax-actions.php 4017
$cropped    = apply_filters( 'wp_create_file_in_uploads', $cropped, $attachment_id ); // For replication.
wp-admin/includes/ajax-actions.php 4045
$cropped = apply_filters( 'wp_create_file_in_uploads', $cropped, $attachment_id ); // For replication.
wp-admin/includes/class-custom-background.php 568
do_action( 'wp_create_file_in_uploads', $file, $id ); // For replication.
wp-admin/includes/class-custom-image-header.php 908
$image = apply_filters( 'wp_create_file_in_uploads', $image, $attachment_id ); // For replication.
wp-admin/includes/class-custom-image-header.php 1067
$cropped = apply_filters( 'wp_create_file_in_uploads', $cropped, $attachment_id ); // For replication.
wp-admin/includes/class-custom-image-header.php 1411
$cropped = apply_filters( 'wp_create_file_in_uploads', $cropped, $attachment_id ); // For replication.

Где используется хук в WordPress

Использование не найдено.