// 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' );