function tag_me( $atts, $content ){
extract( shortcode_atts( array(
'tag' => 'div',
'name' => '',
'class' => '',
'id' => '',
'data' => '',
), $atts ) );
$output .= "<$tag id='' class='' $data>";
$output .= $content;
$output .= "</$tag>";
return $output;
}
add_shortcode( 'tag_me', 'tag_me' );