Reply To: Custom mashup query on search page

Home Forums MapPress Support Custom mashup query on search page Reply To: Custom mashup query on search page

#13254
Chris
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);
?>