function codex_sk($atts, $content = null)
{
extract(shortcode_atts(
array(
"steam" => '',
),
$atts
));
$steams = explode(",", $atts["steam"]);
$table = '';
foreach ($steams as $steam) {
$table .= '';
}
$table .= '' . $steam . '
';
return $table;
}
add_shortcode ('sk', 'codex_dk');