wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_others_drafts › WordPress Function

Depuisn/a
Dépréciée3.1.0
get_others_drafts ( $user_id )
Paramètres:
  • (int) $user_id User ID.
    Requis: Oui
Voir:
Retourne:
  • (array) List of drafts from other users.
Défini(e) dans:
Codex:

Retrieve drafts from other users.



Source

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

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