ikipac adlı üyeden alıntı: mesajı görüntüle
Selamlar.

Eğer uplaod edilen featured image 500x180 boyutunda ise göster değilse no-image göster if else komutunu nasıl ayarlarım?
getimagesize kullanarak yapabilirsin. (http://php.net/manual/tr/function.getimagesize.php)
<?php
list($width, $height, $type, $attr) = getimagesize("imageurl");
if($width == 500 && $height == 180){
echo "no-image";
}
?>