Reply To: Custom Post Type Mashups (using toolset plugin)

Home Forums MapPress Support Custom Post Type Mashups (using toolset plugin) Reply To: Custom Post Type Mashups (using toolset plugin)

#12667
Chris
Keymaster

Hi,

The mashup will show the results of the current page query, which is normally all the posts being displayed on the page. It won’t work if the query is empty.

You can try printing out the current query – without the map – to see what’s being selected (just add this to your theme where the map would be):

<?php 
  global $wp_query;
  print_r($wp_query);
?>