Ala Mode Vacations
/* 2) Resort grid shortcode: [resort_grid brand=”riu”] or [resort_grid brand=”couples”] */
function av_resort_grid_shortcode($atts){
$a = shortcode_atts([‘brand’=>’riu’,’cols’=>3], $atts, ‘resort_grid’);
$brand_map = [
‘riu’ => [
[‘name’=>’RIU Palace Riviera Maya’,’img’=>’https://images.unsplash.com/photo-1501117716987-c8e2a1d1e3b0?w=1200&q=80&auto=format’,
‘blurb’=>’Classic palm-lined beach, upgraded Palace perks.’,
‘href’=>’https://www.applevacations.com/hotels/riu-palace-riviera-maya/?plcode=39838875’],
[‘name’=>’RIU Palace Cabo San Lucas’,’img’=>’https://images.unsplash.com/photo-1500375592092-40eb2168fd21?w=1200′,
‘blurb’=>’Arch views, whale season drama, desert-meets-sea.’,
‘href’=>’https://www.applevacations.com/hotels/riu-palace-cabo-san-lucas/?plcode=39838875’],
[‘name’=>’RIU Palace Punta Cana’,’img’=>’https://images.unsplash.com/photo-1526481280698-8fcc13fd1b72?w=1200′,
‘blurb’=>’Bavaro Beach vibes with a big pool scene.’,
‘href’=>’https://www.applevacations.com/hotels/riu-palace-punta-cana/?plcode=39838875’],
[‘name’=>’RIU Palace Aruba’,’img’=>’https://images.unsplash.com/photo-1544473244-fb1e4a1c5b23?w=1200′,
‘blurb’=>’Palm Beach location, easy strolls & turquoise water.’,
‘href’=>’https://www.applevacations.com/hotels/riu-palace-aruba/?plcode=39838875’],
],
‘couples’ => [
[‘name’=>’Couples Swept Away (Negril)’,’img’=>’https://images.unsplash.com/photo-1540530855697-b586d89ba3ee?w=1200′,
‘blurb’=>’Seven Mile Beach, included activities galore.’,
‘href’=>’https://www.applevacations.com/hotels/couples-swept-away/?plcode=39838875’],
[‘name’=>’Couples Negril’,’img’=>’https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1200′,
‘blurb’=>’Laid-back, boutique feel right on the sand.’,
‘href’=>’https://www.applevacations.com/hotels/couples-negril/?plcode=39838875’],
[‘name’=>’Couples Tower Isle (Ocho Rios)’,’img’=>’https://images.unsplash.com/photo-1526483271348-4f3c6f9a7d1b?w=1200′,
‘blurb’=>’Private island, vintage-Jamaica glam.’,
‘href’=>’https://www.applevacations.com/hotels/couples-tower-isle/?plcode=39838875’],
[‘name’=>’Couples Sans Souci’,’img’=>’https://images.unsplash.com/photo-1526483360412-f4dbaf036963?w=1200′,
‘blurb’=>’Lush cliffs, mineral grottos, secluded coves.’,
‘href’=>’https://www.applevacations.com/hotels/couples-sans-souci/?plcode=39838875’],
],
];
$items = isset($brand_map[$a[‘brand’]]) ? $brand_map[$a[‘brand’]] : [];
$cols = max(2, min(4, intval($a[‘cols’])));
ob_start(); ?>