diff --git a/includes/collection/class-followers.php b/includes/collection/class-followers.php index 940e9f2..f652d24 100644 --- a/includes/collection/class-followers.php +++ b/includes/collection/class-followers.php @@ -380,16 +380,19 @@ class Followers { } // get all Followers of a ID of the WordPress User - $terms = new WP_Query( + $posts = new WP_Query( array( 'post_type' => self::POST_TYPE, - 'author' => $user_id, 'fields' => 'ids', 'meta_query' => array( array( 'key' => 'inbox', 'compare' => 'EXISTS', ), + array( + 'key' => 'user_id', + 'value' => $user_id, + ), ), ) );