abdon esto tambie desvia el tema de que se trata?? que mala organizacion no hables si no lo cumples no desvirtuar es no hacerlod e NINGUN MODO!!
Gypaete supongo que haras que los segundos post tengan un tamaño desde ACP cierto? pero si el avatar es mas pequeño? se redimencionara muy feo sabes? bueno pues por si no sabes aqui te dejo una funcion que yo use para EditPost te sera muy util si no sabes usarla solo dime y te explico mas anu
Código PHP:
<?php
function scale_image($width, $height, $maxwidth, $maxheight)
{
$width = intval($width);
$height = intval($height);
if(!$width) $width = $maxwidth;
if(!$height) $height = $maxheight;
$newwidth = $width;
$newheight = $height;
if($width > $maxwidth)
{
$newwidth = $maxwidth;
$newheight = ceil(($height*(($maxwidth*100)/$width))/100);
$height = $newheight;
$width = $newwidth;
}
if($height > $maxheight)
{
$newheight = $maxheight;
$newwidth = ceil(($width*(($maxheight*100)/$height))/100);
}
$ret['width'] = $newwidth;
$ret['height'] = $newheight;
return $ret;
}