I use this code to get thumbnails in to a custom field + remove any empty custom fields that may be created in the process... because that happens sometimes. I use it in a WPMU installation.
The reason for using it is that I use site-wide-tags plugin that imports all sub-blog posts in to the main blog + custom fields for that blog. So I have a main blog showing the latest posts from all members/blogs in my wpmu network with picture using custom fields.
My problem is that this code only works sometimes. I cant seem to fint out why.. I have an idea that this doesn't work for the members that blog trough the Wordpress-app (iPhone), but I'm about to test that. Does anyone see in the code why this happens? And help me tune it so this doesn't happen? I would be very happy :)
Here is the code:
function w_thumbnail_src() {
if (has_post_thumbnail()) {
$thumb = wp_get_attachment_image_src(get_post_thumbnail_id(), 'emphasis');
return $thumb[0]; // thumbnail url
} else {
return ''; // or a default thumbnail url
}
}
add_action('publish_post', 'add_custom_field_automatically');
function add_custom_field_automatically($post_id) {
global $wpdb;
if(!wp_is_post_revision($post_id)) {
add_post_meta($post_id, 'Image', w_thumbnail_src(), true);
}
}
add_action('save_post','my_cf_check');
function my_cf_check($post_id) {
// verify this is not an auto save routine.
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ) return;
//authentication checks
if (!current_user_can('edit_post', $post_id)) return;
//obtain custom field meta for this post
$custom_fields = get_post_custom($post_id);
if(!$custom_fields) return;
foreach($custom_fields as $key=>$custom_field):
//$custom_field is an array of values associated with $key - even if there is only one value.
//Filter to remove empty values.
//Be warned this will remove anything that casts as false, e.g. 0 or false
//- if you don't want this, specify a callback.
//See php documentation on array_filter
$values = array_filter($custom_field);
//After removing 'empty' fields, is array empty?
if(empty($values)):
delete_post_meta($post_id,$key); //Remove post's custom field
endif;
endforeach;
return;
}