function magic_necklace_shortcode($atts) {
$a = shortcode_atts(array(
'sad' => '',
'happy' => '',
'necklace' => '',
'sound' => ''
), $atts);$id = 'magic_box_' . rand(1000, 9999);return '
';
}
add_shortcode('magic_necklace', 'magic_necklace_shortcode');




