Thumbnail & Category link aside post

I’ve been trying to figure out for days how http://quotelicious.com was able to place thumbnails and category links in a separate box alongside the actual post.

Any ideas?

Related posts

Leave a Reply

2 comments

  1. They are actually doing this is one loop, here’s an example to show similar structure.

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    
        <div class="article">
    
            <div class="left">
                <?php the_post_thumbnail( $size, $attr ); ?>
                <?php get_the_category(); ?>
            </div><!-- end left side -->
    
            <div class="right">
                <?php the_excerpt(); ?>
            </div> <!-- end right side-->
    
        </div>
    
    <?php endwhile; else: endif; ?>