function geofotoshow_shortcode($a) { $a = shortcode_atts([ 'show' => 'slideshow', 'id' => '', 'preview' => 'true', 'lang' => '', 'zoom' => '' ], $a, 'geofotoshow'); $show = $a['show']; if ($show === 'both') { ob_start(); include GFS_PLUGIN_DIR . 'includes/render-both.php'; return ob_get_clean(); } elseif ($show === 'slideshow') { ob_start(); include GFS_PLUGIN_DIR . 'includes/render-slideshow.php'; return ob_get_clean(); } elseif ($show === 'map') { ob_start(); include GFS_PLUGIN_DIR . 'includes/render-map.php'; return ob_get_clean(); } return '
⚠️ Unbekannte Ansicht: ' . esc_html($show) . '
'; } add_shortcode('geofotoshow', 'geofotoshow_shortcode'); Warning: Cannot modify header information - headers already sent by (output started at /mnt/web716/b1/59/56983559/htdocs/WordPress_01/wp-content/plugins/geofotoshow/includes/shortcodes.php:1) in /mnt/web716/b1/59/56983559/htdocs/WordPress_01/wp-includes/feed-rss2-comments.php on line 8