Reply To: Mashup with Taxonomy

Home Forums MapPress Support Mashup with Taxonomy Reply To: Mashup with Taxonomy

#14049
Chris
Keymaster

    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);
    ?>