wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_others_drafts › WordPress Function

Dan/a
Deprecato3.1.0
get_others_drafts ( $user_id )
Parametri:
  • (int) $user_id User ID.
    Richiesto:
Vedi:
Ritorna:
  • (array) List of drafts from other users.
Definito a:
Codex:

Retrieve drafts from other users.



Sorgenti

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

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