Viewing 1 replies (of 1 total)
  • Plugin Author Remco Tolsma

    (@remcotolsma)

    If you want to show a map of the current showed posts on a category page you can pass the global $wp_query object to the pronamic_google_maps_mashup function:

    <?php
    
    if ( function_exists( 'pronamic_google_maps_mashup' ) ) {
    	global $wp_query;
    
    	pronamic_google_maps_mashup( $wp_query, array(
    		'width' => 300,
    		'height' => 200,
    		...
    	) );
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Tags in the current category’ is closed to new replies.