diff --git a/wordpress_import.module b/wordpress_import.module
index 636e57a..0da824a 100755
--- a/wordpress_import.module
+++ b/wordpress_import.module
@@ -1250,7 +1250,13 @@ function wordpress_import_process_post(&$wordpress_import, &$context) {
 
   // Process images for this post
   if ($wordpress_import->options['images']) {
+    // Process images in body of the node
     wordpress_import_process_post_images($node['body'], $wordpress_import->options['images_dir'], $context);
+    
+    // Process images in teaser of the node
+    if (!empty($post['excerpt']) {
+      wordpress_import_process_post_images($node['teaser'], $wordpress_import->options['images_dir'], $context);
+    }
   }
 
   // Save the node
