Single images are imported as a gallery – FIX
-
Tumblr Importer version 0.8 imports posts with single images as a post with a gallery. In tumblr-importer.php line 803 it checks to see if there are any images in the post, and if so create a gallery.
Updating
if ( ! empty( $tpost->photos ) ) {
to
if ( count ( $tpost->photos ) > 1 ) {
fixes this.
- The topic ‘Single images are imported as a gallery – FIX’ is closed to new replies.