Merhabalar,

Şöyle bir Shortcode olduğunu düşünürsek verilen steam değerinin içini değil de kendisini nasıl çekebilirim?

Shortcode: [store steam="25TL"]
function buy_store( $atts, $content = null ) { 
extract(shortcode_atts( 
    array( 
        "steam" => '',
    ), 
    $atts)); 
        if($steam) $steam_name="Steam Store"; 
        if(!$steam) $steam_name=""; 
    return ' 
'.$steam_name.'       >>> Bu Steam için tanımlanan tam ismi yani Steam Store'yi çekiyor
'.$steam.'            >>> Bu steam için verilen iç değeri yani 25TL'yi çekiyor.
    '; 
} 
add_shortcode( 'store', 'buy_store' );


?>
Benim istediğim ise varsa steam değeri var ise ham ismi geçmesi, bunu nasıl yapabilirim?