son günlerde bu tür konular artığını gördüğüm için bunu yazma ihtiyacı gördüm..
özel alana eklediğimiz resimlerin boyutu büyük olunca nasıl küçültülür..
sadece özel alan yazan yeri bulup (width="xx" height="xx" ) bu kodu bırakmak yeterli..
örnek lifestyle teması için bu kodu bulup
<a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php echo get_post_meta($post->ID, "thumbnail", true); ?>" alt="<?php the_title(); ?>" /></a>
<a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php echo get_post_meta($post->ID, "thumbnail", true); ?>" alt="<?php the_title(); ?>" width="70" height="70"/></a>
bu kodla değiştiririz..width="70" height="70" eklenen kod bu..
wordpress özel alan resimlerini boyutlandırma ?
1
●423