Home › Forums › MapPress Support › Custom Post Type Mashups (using toolset plugin) › Reply To: Custom Post Type Mashups (using toolset plugin)
May 23, 2013 at 4:00 pm
#12667
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);
?>