Currently using this simplified code to pass data from WP to JS.
function add_map_data() {
$objName = "MapData";
$array = array(
"MapViewLatitude" => "51.505",
"MapViewLongitude" => "-0.09",
);
wp_enqueue_script( 'mapdata', get_bloginfo('template_url').'/custom/map.js', null, null, false );
wp_localize_script( 'mapdata', $objName, $array );
}
add_action( 'wp_enqueue_scripts', 'add_map_data');
The only issue is that this is passing object.
How can I pass data in JSON format?
Any suggestion much appreciated.
Try wrapping your array in
json_encode()
:Next step is to parse the JSON string back to a JSON object in JavaScript so: