Ver Mensaje Individual
  #3 (permalink)  
Antiguo 05/05/2014, 05:27
Avatar de AlejandroGalvez
AlejandroGalvez
 
Fecha de Ingreso: noviembre-2013
Mensajes: 189
Antigüedad: 10 años, 5 meses
Puntos: 49
Respuesta: Modifcar shortcode (_blank)

Funcionará tal y como te dice MaNuX0218

Código PHP:
Ver original
  1. function rb_social_function($atts, $content){
  2.      
  3.     $html = '<ul class="socialIcons clearfix">';
  4.  
  5.     if(!empty($atts))
  6.         foreach($atts as $key => $item){
  7.             $html .= '<li><a href="' . $item . '" class="' . $key . '" target="_blank">' . $item . '</a></li>';
  8.         }
  9.  
  10.     $html .= '</ul>';
  11.  
  12.     return $html;
  13.  
  14. }
  15.  
  16. add_shortcode('rb_social', 'rb_social_function');