First i want to tell you theat i`m a newbie :| i found this snippet that extract the image from a wordpress post and display it with an shortcode. How can i make it to add the image url in my thumbanail custom field field? here is the code:
function cwc_postimage($atts, $content = null) {
extract(shortcode_atts(array(
"size" => 'thumbnail',
"float" => 'none'
), $atts));
$images =& get_children( 'post_type=attachment&post_mime_type=image&post_parent=' . get_the_id() );
foreach( $images as $imageID => $imagePost )
$fullimage = wp_get_attachment_image($imageID, $size, false);
$imagedata = wp_get_attachment_image_src($imageID, $size, false);
$width = ($imagedata[1]+2);
$height = ($imagedata[2]+2);
return ''.$fullimage.'';
}
add_shortcode("postimage", "cwc_postimage");
this is something i use to display thumbs ... but i must copy and paste the image url in the field ...
$values = get_post_custom_values("thesis_thumb");if (empty($values)) {echo '/wp-content/themes/b/custom/images/noimg.png';}; echo $values[0];
i hope i can make it add automaticaly the images url to the custom field for thumbnail