Query
// WP_Query arguments $args = array( 'post_type' => array( 'property' ), 'post_status' => array( 'published' ), 'nopaging' => false, 'paged' => '3', 'posts_per_page' => '3', 'order' => 'DESC', 'orderby' => 'modified', ); // The Query $query = new WP_Query( $args );