Custom Number of Listings on Listings Page Template
<?php
/**
* Custom Number of Listings on Listings Page Template
*/
add_filter('wpsight_listing_query_args', 'custom_listing_query_args');
function custom_listing_query_args($args) {
$args['posts_per_page'] = 3;
return $args;
}