Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
_wp_privacy_resend_request() WordPress Function
The wp_privacy_resend_request function allows a user to request that their data be sent to them again. This is useful if the original request was lost or if the user did not receive the data they requested.
_wp_privacy_resend_request( int $request_id ) #
Resend an existing request and return the result.
Parameters
- $request_id
(int)(Required)Request ID.
Return
(true|WP_Error) Returns true if sending the email was successful, or a WP_Error object.
Source
File: wp-admin/includes/privacy-tools.php
function _wp_privacy_resend_request( $request_id ) { $request_id = absint( $request_id ); $request = get_post( $request_id ); if ( ! $request || 'user_request' !== $request->post_type ) { return new WP_Error( 'privacy_request_error', __( 'Invalid personal data request.' ) ); } $result = wp_send_user_request( $request_id ); if ( is_wp_error( $result ) ) { return $result; } elseif ( ! $result ) { return new WP_Error( 'privacy_request_error', __( 'Unable to initiate confirmation for personal data request.' ) ); } return true; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.9.6 | Introduced. |