"-1", "number_of_columns" => "3", "order_by" => "", "order" => "", "category" => "", "text_length" => "50", "title_tag" => "h5", "display_featured_images" => "no", "title_color" => "", "separator_color" => "", "excerpt_color" => "", "post_info_color" => "", "post_info_separator_color" => "", "background_color" => "", "featured_image_size" => "", "image_width" => "", "image_height" => "" ); 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']; $q = new WP_Query(array('orderby' => $order_by, 'order' => $order, 'posts_per_page' => $number_of_posts, 'category_name' => $category)); $columns_number = ""; switch($number_of_columns) { case 1: $columns_number = 'one_column'; break; case 2: $columns_number = 'two_columns'; break; case 3: $columns_number = 'three_columns'; break; case 4: $columns_number = 'four_columns'; break; default: break; } $image_size = "portfolio_masonry_with_space"; switch($featured_image_size) { case 'landscape': $image_size = 'portfolio-landscape'; break; case 'portrait': $image_size = 'portfolio-portrait'; break; case 'full': $image_size = 'full'; break; default: $image_size = 'portfolio_masonry_with_space'; break; } $title_style = ''; if($title_color != "") { $title_style = "style='color: ".$title_color.";'"; } $separator_style = ''; if($separator_color != "") { $separator_style = "style='background-color: ".$separator_color.";'"; } $excerpt_style = ''; if($excerpt_color != "") { $excerpt_style = "style='color: ".$excerpt_color.";'"; } $post_info_style = ''; if($post_info_color != "") { $post_info_style = "style='color: ".$post_info_color.";'"; } $post_info_holder_style = ''; if($post_info_separator_color != "") { $post_info_holder_style = "style='border-color: ".$post_info_separator_color.";'"; } $holder_style = ''; if($background_color != "") { $holder_style = "style='background-color: ".$background_color.";'"; } $html = ""; $html .= "
'.$excerpt.'
'; } $html .= '