函数原型
get_others_pending( int $user_id ): array
函数描述
Retrieve pending review posts from other users.
是否弃用
Warning: This function has been deprecated. Use get_posts() instead.
函数参数
-
$user_id
int
Required - User ID.
函数返回值
array List of posts with pending review post type from other users.
函数位置
File: wp-admin/includes/deprecated.php.
函数源码
function get_others_pending($user_id) {
_deprecated_function( __FUNCTION__, '3.1.0' );
return get_others_unpublished_posts($user_id, 'pending');
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.1.0 | Introduced. |

