Funcionará tal y como te dice MaNuX0218
Código PHP:
Ver originalfunction rb_social_function($atts, $content){
$html = '<ul class="socialIcons clearfix">';
foreach($atts as $key => $item){
$html .= '<li><a href="' . $item . '" class="' . $key . '" target="_blank">' . $item . '</a></li>';
}
$html .= '</ul>';
return $html;
}
add_shortcode('rb_social', 'rb_social_function');