test-3
function embed_mind_shift($atts) {
$atts = shortcode_atts(
array(
‘url’ => ‘https://mind-shift.nl’, // Standaard URL
‘width’ => ‘100%’,
‘height’ => ‘800px’,
),
$atts,
‘mindshift’
);
return ‘‘;
}
add_shortcode(‘mindshift’, ‘embed_mind_shift’);