Wordpress - Shortcodes and Blocks
What will be the output of this shortcode handler?
function welcome_shortcode($atts) {
$atts = shortcode_atts(['user' => 'Visitor'], $atts);
return "Welcome, " . $atts['user'] . "!";
}
// Usage: [welcome user="John"]