wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



get_others_pending › WordPress Function

Desden/a
Obsoleto3.1.0
get_others_pending ( $user_id )
Parâmetros:
  • (int) $user_id User ID.
    Required: Yes
Ver:
Retorna:
  • (array) List of posts with pending review post type from other users.
Definido em:
Codex:

Retrieve pending review posts from other users.



Fonte

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

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