Warning: This function has been deprecated. Use get_posts() instead.

get_others_drafts( int $user_id ): array

Retrieve drafts from other users.


Description

Top ↑

See also


Top ↑

Parameters

$user_id int Required
User ID.

Top ↑

Return

array List of drafts from other users.


Top ↑

Source

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

function get_others_drafts($user_id) {
	_deprecated_function( __FUNCTION__, '3.1.0' );

	return get_others_unpublished_posts($user_id, 'draft');
}


Top ↑

Changelog

Changelog
Version Description
3.1.0 Introduced.

Top ↑

User Contributed Notes

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