Home › Forums › MapPress Support › Mashup with Taxonomy › Reply To: Mashup with Taxonomy
January 9, 2014 at 7:53 am
#14049
Hi,
The query looks OK. Double check that:
– fellowship and rpca are the corrent name and slug for that taxonomy
– you have maps in the posts with taxonomy fellowship = rpca
If you’re still getting a blank map, there is probably an issue with the query. One way to validate the query is correct is to try it in your browser. For example:
http://www.example.com/church/?fellowship=rpca
Another way to test it is to output the query result in the theme. Add this to a template file such as ‘index.php’ or ‘footer.php’:
<?php
$wpq = new WP_Query("fellowship=rpca");
print_r($wpq);
?>