rest_insert_attachment

rest_insert_attachment

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('rest_insert_attachment') is found 1 times:

  • /wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php line 346
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
         * @param WP_Post         $attachment Inserted or updated attachment object.
         * @param WP_REST_Request $request    The request sent to the API.
         * @param bool            $creating   True when creating an attachment, false when updating.
         */
        do_action( 'rest_insert_attachment', $attachment, $request, true );
     
        return array(
            'attachment_id' => $id,
            'file'          => $file,
        );
    }