Wordpress Shortcode Generator
Changelog

General
Choose a custom name for your shortcode
Functions
Self-Closing
Please choose between Self-Closing and Enclosing type
Attributes
Monkey in universe
Press shift + enter to copy snippet to clipboardImprint | Data privacy

        // HOW TO EMBED
        // Shortcode: [new_shortcode]

        function create_newshortcode_shortcode($atts) {
          
          $atts = shortcode_atts(
            array(
              'name' => 'value'
            ),
            $atts,
            'new_shortcode'
          );
          
          $name = $atts['name'];
        
        }
        add_shortcode( 'new_shortcode', 'create_newshortcode_shortcode' );