Viewing 1 replies (of 1 total)
  • Plugin Author Mike Martel

    (@mike_cowobo)

    Hi John,

    If the images are blurry, it’s because WP Tiles uses your ‘post-thumbnail’ size by default, which is defined in your theme. On some themes it is tiny, on some it is huge. The way to fix it (also see the remarks in the FAQ) is by adding the following filter to your functions.php:

    add_filter('wp-tiles-image-size', 'change_tile_image_size');
    function change_tile_image_size( $image_size ) {
        return 'large'; // Replace 'large' by the desired image size
    }

    Cheers,
    Mike

Viewing 1 replies (of 1 total)
  • The topic ‘Images are Blurry’ is closed to new replies.