get_others_pending()

最后更新于:2021-11-26 10:42:13

get_others_pending( int$user_id)

Retrieve pending review posts from other users.

参数

$user_id

(int) (Required) User ID.

响应

(array) List of posts with pending review post type from other users.

源文件

文件: gc-admin/includes/deprecated.php

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

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