wp_get_user_request( int $request_id ): WP_User_Request|false

In this article

Returns the user request object for the specified request ID.

Parameters

$request_idintrequired
The ID of the user request.

Return

WP_User_Request|false

Source

function wp_get_user_request( $request_id ) {
	$request_id = absint( $request_id );
	$post       = get_post( $request_id );

	if ( ! $post || 'user_request' !== $post->post_type ) {
		return false;
	}

	return new WP_User_Request( $post );
}

Changelog

VersionDescription
4.9.6Introduced.

User Contributed Notes

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