Forum Replies Created

Viewing 1 replies (of 1 total)
  • Worked for me, thanks. Below is how I used it in it’s entirety – just in case anyone wants a quick C’nP.

    <?php query_posts('category_name=Portfolio&order=ASC&orderby=date&posts_per_page=36'); ?>
    
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    
    <?php
    $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'thumbnail' );
    $url = $thumb['0'];
    ?>
    <li><a style="background-image:url(<?=$url?>);" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"></a></li>
    
    <?php endwhile; ?>
    <?php endif; ?>
Viewing 1 replies (of 1 total)