• I found a note from a previous version and replaced the <?php the_excerpt() ?> with<?php the_content(‘<p class=”serif”>Read the rest of this page »’); ?> in archive.php. The full text is now displayed but images are still not loaded. We want the images to load. How do we get this to happen?

Viewing 1 replies (of 1 total)
  • Edit /wp-content/themes/default/archive.php

    Change:

    <div class=”entry”>
    <?php the_excerpt(); ?>
    </div>

    to

    <div class=”entry”>
    <?php the_content(‘Read the rest of this entry »’); ?>
    </div>

Viewing 1 replies (of 1 total)
  • The topic ‘Kubrick theme for 1.5 archive doesn’t show images’ is closed to new replies.