Extra Thumbnail Created
-
Hello,
I’ve set to create one thumbnail per video uploaded. When I upload two videos at the same time, the second video creates an extra thumbnail with the suffix ‘_thumb3’. It seems the cron job ‘kgvid_cron_new_attachment’ is called twice with the same post_id and I’m not sure why that happens.
I’ve added the following code to prevent this:function kgvid_cron_new_attachment_handler_cancel_extra_thumbs($post_id, $force = false) { if(metadata_exists('post', $post_id, "_kgflashmediaplayer-poster")){ remove_action('kgvid_cron_new_attachment', 'kgvid_cron_new_attachment_handler', 10); } } add_action('kgvid_cron_new_attachment', 'kgvid_cron_new_attachment_handler_cancel_extra_thumbs', 9, 2);
Thank you.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Extra Thumbnail Created’ is closed to new replies.