'', 'class' => '', 'style' => 'none', 'color' => '', 'border_color' => '', 'text_align' => '', 'font_weight' => '400', 'font_size' => '36px', 'margin_top' => '', 'margin_bottom' => '', 'border_width' => '5px', 'responsive_text' => '', ), $args ); extract( $defaults ); self::$args = $defaults; $uniqid = uniqid('heading-'); $class .=' '.$uniqid; if(is_numeric($font_size)) $font_size = $font_size.'px'; if(is_numeric($margin_top)) $margin_top = $margin_top.'px'; if(is_numeric($margin_bottom)) $margin_bottom = $margin_bottom.'px'; if(is_numeric($border_width)) $border_width = $border_width.'px'; $html = ''; if( $style == 'none'){ $html .= '

'.do_shortcode( Magee_Core::fix_shortcodes($content)).'

'; }else{ $html .= '

'.do_shortcode( Magee_Core::fix_shortcodes($content)).'

'; } return $html; } } new Magee_Title(); endif;