Hocam demek istediğimi tam olarak anlatamadım sanırım.
Büyük resimli olan konular var. Onları etiket ile çekiyor ve ona göre kendisi konu resmini 2 katına çıkarıyor.
Demo sitede bu sayı 2 adetten fazla. Ancak ben http://adlimuhasebe.com/wp sitemde deniyorum şu an demodaki sonucu elde edemiyorum.
Ek Olarak: Aşağıdaki js ile ilgili bir durum olabilir mi aacaba?
				// Reset featured and clear states when rendrawing.
				if (redraw) {
					if ($el.hasClass('semicolon-featured-removed'))
						$el.removeClass('semicolon-featured-removed').addClass('semicolon-featured');
					if ($el.hasClass('semicolon-clear-left'))
						$el.removeClass('semicolon-clear-left');
					if ($el.hasClass('semicolon-last'))
						$el.removeClass('semicolon-last');
				}
				/**
				 * @todo: More featured-unfeatured ideas:
				 *
				 * Don't print more than one featured post per row except the first row. Maybe
				 * don't print featured posts in two consequent rows, so there will always be
				 * at least one row with 4 non-featured posts in between ones that contain feats.
				 */
				// Unfeature a post if it's about to be rendered in the last column position
				// because it won't fit and wrap instead. Also unfeature the last item on the list.
				if ($el.hasClass('semicolon-featured') && columns > 1) {
					if (count % columns === columns - 1 || i == $entries.length - 1) {
						$el.removeClass('semicolon-featured').addClass('semicolon-featured-removed');
					}
				}
				count += 1;
				if (count % columns === 1)
					$el.addClass('semicolon-clear-left');
				// One ghost element because featured posts take up two columns
				if ($el.hasClass('semicolon-featured'))
					count += 1;
				if (count % columns === 0)
					$el.addClass('semicolon-last');
			});
		});
	}; 
  
