delete_attachment хук-событие . WP 2.0.0
Fires before an attachment is deleted, at the start of wp_delete_attachment().
Использование
add_action( 'delete_attachment', 'action_function_name_1992', 10, 2 ); function action_function_name_1992( $post_id, $post ){ // action... }
- $post_id(число)
- Attachment ID.
- $post(WP_Post)
- Post object.
Список изменений
С версии 2.0.0 | Введена. |
С версии 5.5.0 | Added the $post parameter. |
Где вызывается хук
wp-includes/post.php 5940
do_action( 'delete_attachment', $post_id, $post );
Где используется хук в ядре WordPress
wp-includes/post.php 72
add_action( 'delete_attachment', array( $this, 'delete_attachment_data' ) );
wp-includes/post.php 482
add_action( 'delete_attachment', '_delete_attachment_theme_mod' );