Ejemplo n.º 1
0
/**
 * Retrieve pending review posts from other users.
 *
 * @deprecated 3.1.0
 *
 * @param int $user_id User ID.
 * @return array List of posts with pending review post type from other users.
 */
function get_others_pending($user_id)
{
    _deprecated_function(__FUNCTION__, '3.1');
    return get_others_unpublished_posts($user_id, 'pending');
}
Ejemplo n.º 2
0
/**
 * Retrieve pending review posts from other users.
 *
 * @since unknown
 *
 * @param int $user_id User ID.
 * @return array List of posts with pending review post type from other users.
 */
function get_others_pending($user_id)
{
    return get_others_unpublished_posts($user_id, 'pending');
}