Wordpress - Shortcodes and Blocks
Given this shortcode handler in PHP:
What will be the output of
function greet_shortcode($atts) {
$atts = shortcode_atts(['name' => 'Guest'], $atts);
return "Hello, " . $atts['name'] . "!";
}What will be the output of
[greet name="Alice"] in a post?