wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_others_drafts › WordPress Function

Seitn/v
Veraltet3.1.0
get_others_drafts ( $user_id )
Parameter:
  • (int) $user_id User ID.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (array) List of drafts from other users.
Definiert in:
Codex:

Retrieve drafts from other users.



Quellcode

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

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