Title: tinytim84's Replies | WordPress.org

---

# tinytim84

  [  ](https://wordpress.org/support/users/tinytim84/)

 *   [Profile](https://wordpress.org/support/users/tinytim84/)
 *   [Topics Started](https://wordpress.org/support/users/tinytim84/topics/)
 *   [Replies Created](https://wordpress.org/support/users/tinytim84/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/tinytim84/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/tinytim84/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/tinytim84/engagements/)
 *   [Favorites](https://wordpress.org/support/users/tinytim84/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] Get posts by guest author no longer working after 3.3.0 update](https://wordpress.org/support/topic/get-posts-by-guest-author-no-longer-working-after-3-3-0-update/)
 *  Thread Starter [tinytim84](https://wordpress.org/support/users/tinytim84/)
 * (@tinytim84)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/get-posts-by-guest-author-no-longer-working-after-3-3-0-update/#post-10419314)
 * My workaround at the moment (and it’s not really ideal) is that I’m using to 
   loop to go through all posts and then storing the post ID in an array by using
   get_the_ID(). I then pass that off to my function that does the query and then
   use the post__in argument to get those posts. I also have to add this to the 
   functions.php file
 *     ```
       if ( $query->is_author && !is_admin() ) {
         set_query_var('posts_per_page', -1);
       }
       add_filter('pre_get_posts', 'change_wp_query_size', 999);
       ```
   
 * That just ensures that I pull all posts from that author in the loop as the default
   is 10.
 * Not ideal, but it’s working right now. Hoping that they will fix this in a future
   release.
    -  This reply was modified 7 years, 11 months ago by [tinytim84](https://wordpress.org/support/users/tinytim84/).

Viewing 1 replies (of 1 total)