function philidor_iframe_shortcode($atts, $content = null) { if (!$content) { return '
Iframe fout: geen URL opgegeven.
'; } // Strip HTML tags (remove,
, etc.)
$url = strip_tags($content);
// Replace newlines, tabs, multiple spaces
$url = preg_replace('/\s+/', '', $url);
// Sanitize URL
$url = esc_url($url);
if (empty($url)) {
return '
Iframe fout: ongeldige URL.
'; } $height = 800; // default height $scrolling = 'auto'; // scrollable // Return iframe HTML return << HTML; } add_shortcode('iframe', 'philidor_iframe_shortcode');