wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_others_pending › WordPress Function

Sincen/a
已弃用3.1.0
get_others_pending ( $user_id )
参数:
  • (int) $user_id User ID.
    Required: Yes
查看:
返回:
  • (array) List of posts with pending review post type from other users.
定义在:
文档:

Retrieve pending review posts from other users.



源码

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

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