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( int $request_id ): true|WP_Error

Resend an existing request and return the result.


Parameters

$request_id int Required
Request ID.

Top ↑

Return

true|WP_Error Returns true if sending the email was successful, or a WP_Error object.


Top ↑

Source

File: wp-admin/includes/privacy-tools.php. View all references

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;
}


Top ↑

Changelog

Changelog
Version Description
4.9.6 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.