get_others_pending()
Deprecated from version 3.1.0. It is no longer supported and can be removed in future releases. Use get_posts() instead.
Retrieve pending review posts from other users.
No Hooks.
Return
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 6.7.1
function get_others_pending($user_id) { _deprecated_function( __FUNCTION__, '3.1.0' ); return get_others_unpublished_posts($user_id, 'pending'); }