Resim eklerken özel alan ilemi eklemem gerekiyor yardımlarınızı bekliyorum.
thumb thumbnail gibi özel alanlar denemedim ama çıkmadı.
http://www.siteadi.com/wp-content/th...rc=&q=90&w=350
index.php kodu
<?php
$picurl = get_post_meta($post->ID,'haikuo_pic_url',true);
if( has_post_thumbnail() ){
$img_id = get_post_thumbnail_id();
$img_url = wp_get_attachment_image_src($img_id);
$img_url = $img_url[0];
$img_url_full = $img_url.'_full.jpg';
$array1 = get_headers($img_url_full);
if ($array1[0] == 'HTTP/1.1 200 OK') {
}else{
$img_url = get_bloginfo("template_url").'/timthumb.php?src='.$img_url.'&q=90&w=270';
}
}elseif(!empty($picurl)){
$img_url = get_bloginfo("template_url").'/timthumb.php?src='.$picurl.'&q=90&w=270';
}else{
$img_url = get_post_img( '', 270, '' );
}
echo '<img src="'.$img_url.'" alt="'.$post->post_title.'" width="270" />'
?>