Código PHP:
function rb_social_function($atts, $content){
$html = '<ul class="socialIcons clearfix">';
if(!empty($atts))
foreach($atts as $key => $item){
$html .= '<li><a href="' . $item . '" class="' . $key . '">' . $item . '</a></li>';
}
$html .= '</ul>';
return $html;
}
add_shortcode('rb_social', 'rb_social_function');
He pensado que añadiento esto, funcionará:
$html .= '<li><a href="' . $item . '" class="' . $key . '" target="' . $_blank . '">' . $item . '</a></li>';
Así funcionará??
Os hago la pregunta xq, a parte de no tener ni idea de código, no quiero ir subiéndolo y probando (prueba y error) hasta estar seguro de que está bien.
muchas gracias.