Wordpress - Shortcodes and Blocks
What is the issue with this shortcode handler?
Used as:
function display_shortcode($atts) {
return "Number: " . $atts['number'];
}
add_shortcode('display', 'display_shortcode');Used as:
[display]