rest_insert_attachment

rest_insert_attachment

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

See hook in core

Displaying hooks found in version: wordpress-6.5.2

do_action('rest_insert_attachment') is found 1 times:

  • /wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php line 325
    		 *                                    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,
    		);
    	}