"", "auto_start" => "false", "info_position" => "", "hover_box_color" => "", "order_by" => "date", "order" => "ASC", "number" => "-1", "blogs_shown" => "", "category" => "", "selected_projects" => "", "day_color" => "", "day_font_size" => "", "month_color" => "", "month_font_size" => "", "post_info_position" => "", "show_date" => "yes", "date_color" => "", "show_categories" => "yes", "category_color" => "", "show_author" => "yes", "author_color" => "", "title_tag" => "h3", "title_color" => "", "image_size" => "full", "image_width" => "", "image_height" => "", "enable_navigation" => "", "add_class" => "", "show_read_more" => "default", "show_excerpt" => "no", "excerpt_length" => "", "excerpt_color" => "", "show_comments" => "no", "comments_color" => "" ); extract(shortcode_atts($args, $atts)); $headings_array = array('h2', 'h3', 'h4', 'h5', 'h6'); //get correct heading value. If provided heading isn't valid get the default one $title_tag = (in_array($title_tag, $headings_array)) ? $title_tag : $args['title_tag']; $html = ""; $data_attribute = ""; if ($blogs_shown !== "" && $type != "simple") { $data_attribute .= " data-blogs_shown='" .$blogs_shown. "'"; } $data_attribute .= " data-auto_start='" .$auto_start. "'"; $title_color_style = ''; if ($title_color != "") { $title_color_style .= 'style="'; $title_color_style .= 'color: ' . $title_color . ';'; $title_color_style .= '"'; } $category_style = ''; if ($category_color != '') { $category_style = 'style="color: ' . $category_color . ';"'; } $hover_box_style = ""; if ($hover_box_color != '') { $hover_box_style = 'style="background-color:' . $hover_box_color . ';"'; } $day_style = ""; if ($day_color !== "") { $day_style .= 'color: ' . $day_color . ';'; } if ($day_font_size !== "") { $day_style .= 'font-size: ' . $day_font_size . 'px;'; } $day_style = 'style= "'.$day_style.'"'; $month_style = ""; if ($month_color !== "") { $month_style .= 'color: ' . $month_color . ';'; } if ($month_font_size !== "") { $month_style .= 'font-size: ' . $month_font_size . 'px;'; } $month_style = 'style= "'.$month_style.'"'; $date_style = ""; if ($date_color !== "") { $date_style .= 'color: ' . $date_color . ';'; } $date_style = 'style= "'.$date_style.'"'; $author_style = ""; if ($author_color !== "") { $author_style .= 'color: ' . $author_color . ';'; } $author_style = 'style= "'.$author_style.'"'; $comments_style = ""; if ($comments_color !== "") { $comments_style .= 'color: ' . $comments_color . ';'; } $comments_style = 'style= "'.$comments_style.'"'; $excerpt_style = ""; if ($excerpt_color !== "") { $excerpt_style .= 'color: ' . $excerpt_color . ';'; } $excerpt_style = 'style= "'.$excerpt_style.'"'; //get proper image size switch ($image_size) { case 'landscape': $thumb_size = 'portfolio-landscape'; break; case 'portrait': $thumb_size = 'portfolio-portrait'; break; default: $thumb_size = 'full'; break; } $type_class = " blog_slider_carousel"; if($type == "simple") { $type_class = " simple_slider"; } $html .= "
"; if ($enable_navigation) { $html .= ''; } $html .= "
"; return $html; } add_shortcode('blog_slider', 'blog_slider'); }