Esempio n. 1
0
 public static function shortcode($atts)
 {
     $a = shortcode_atts(array('alias' => false), $atts);
     if (!$a['alias']) {
         return __('You have to insert a valid alias in the shortcode', 'crellyslider');
     } else {
         return CrellySliderFrontend::output($a['alias'], false);
     }
 }