Pagination not working with custom loop

I’ve got a custom loop that I’m using to display some Real Estate listings that will be available within 60 days. I’m calling it with the following function: <?php $sixtydays = date(‘Y/m/d’, strtotime(‘+60 days’)); $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; $query = new PostsOrderedByMetaQuery(array( ‘post_type’ => array(‘post’, ‘real-estate’), ‘meta_key’ => ‘Time Available’, ‘meta_compare’ => … Read more