• When I make a blogpost my pictures don’t show up in the reader and also my thumbnail-picture doesn’t show up

    see this picture : http://imgur.com/L0Dt77X

    As you can see the picture I’ve implemented in the post doesn’t show up and neither does my thumbnail picuture :/

    Any advice on this would be really appreciated 😀

    Simon

Viewing 2 replies - 1 through 2 (of 2 total)
  • add to loop.php

    <a href="<?php the_permalink(); ?>">
    <?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'single-post', array('class' => 'content-thumb') ); } ?>
    </a>

    check functions.php

    add_theme_support( 'post-thumbnails' );
    set_post_thumbnail_size( 150, 100 );
    add_image_size( 'single-post', 150, 100 );
    Thread Starter thatguywholifts

    (@thatguywholifts)

    Yes, I have the twenty twelve theme and changed that part in the functions.php. Where can I find the loop.php?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘No Pictures in wordpress reader’ is closed to new replies.