"", "title_color" => "", ); extract(shortcode_atts($args, $atts)); //init variables $html = ""; $title_styles = ""; //generate styles if($title_color != "") { $title_styles .= "color: ".$title_color.";"; } $html .= '
'; $html .= '
'; $html .= ''.$title.''; $html .= '
'; $html .= '
'; return $html; } add_shortcode('text_marquee', 'text_marquee'); }