Home › Forums › MapPress Support › Custom mashup query on search page › Reply To: Custom mashup query on search page
August 31, 2013 at 6:01 am
#13254
Keymaster
Hi,
Try removing the do_shortcode() call and see what wp_query would fetch by itself instead – it may just be a query issue:
<?php
$wpq = new WP_Query("post__in=" . $result . "&post_type=restaurant");
print_r($wpq);
?>