get_others_pending()
Deprecated since 3.1.0. It is no longer supported and may be removed in future releases. Use get_posts() instead.
Retrieve pending review posts from other users.
No Hooks.
Returns
Array. List of posts with pending review post type from other users.
Usage
get_others_pending( $user_id );
- $user_id(int) (required)
- User ID.
Notes
- See: get_posts()
Changelog
| Deprecated since 3.1.0 | Use get_posts() |
get_others_pending() get others pending code WP 7.0
function get_others_pending($user_id) {
_deprecated_function( __FUNCTION__, '3.1.0' );
return get_others_unpublished_posts($user_id, 'pending');
}