JoeHana
11/25/2013 - 11:57 PM

Custom Map Marker

Custom Map Marker

<?php

/**
 * Custom Map Marker
 */
 
add_filter('wpsight_map_listing_icon', 'custom_map_listing_icon', 100 );

function custom_map_listing_icon($output) {
	
	$output = 'PATH-TO-IMAGE.jpg';
	
	return $output;
}