Zwolle – Donderdagmiddag 17 november zijn twee mannen (28- en 31 jaar), zonder vaste woon- verblijfplaats aangehouden voor winkeldiefstal / heling.
In hun auto op de Thorbeckegracht werden o.a. een voor winkeldiefstal geprepareerde tas en recent uit winkels in Zwolle gestolen spullen, waaronder kleding en schoenen, aangetroffen. Beiden werden ingesloten. Tegen hen wordt een nader onderzoek ingesteld.
';
$output .= '
';
if ($v['count'] == 1) {
$output .= 'Video ' . intval($v['count']) . '';
} else {
$output .= 'Video\'s ' . intval($v['count']) . '';
}
$output .= '
';
$output .= $v['html'];
$output .= '
';
}
// Display photos
$photos = rsa_get_post_all_photos($this_post_id, 'normal-b', !$first_is_album);
if (!empty($photos) && (!$first_is_album || ($first_is_album && count($photos) > 1))) {
$photos_count = count($photos);
$output .= '';
$output .= '
';
if ($photos_count == 1) {
$output .= 'Foto ' . intval($photos_count) . '';
} else {
$output .= 'Foto\'s ' . intval($photos_count) . '';
}
$output .= '
';
foreach ($photos as $photo) {
// Restore the original condition
if ((isset($custom_post_id) || $first_is_album) && $photo->is_headphoto) {
continue; // Skip head photos if needed
}
$output .= '
';
}
$output .= '
';
}
// Display location map
$geo_meta = get_post_meta($this_post_id); // Fetch all post meta data in one call
$geo_latitude = $geo_meta['geo_latitude'][0] ?? '';
$geo_public = $geo_meta['geo_public'][0] ?? '';
if (!empty($geo_latitude) && $geo_public) {
$geo_longitude = $geo_meta['geo_longitude'][0] ?? '';
$google_maps_key = dr_get_config_item('google_maps_key');
$output .= '';
$output .= '
Locatie
';
$output .= '
';
$output .= '';
$output .= '
';
$output .= '
';
}
// Output all attachments if any exist
if (!empty($output)) {
echo '' . $output . '
';
}
?>