Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <div class="related_posts">
  2.  
  3. <?php
  4.  
  5. $my_query = new WP_Query('orderby=rand&numberposts=4');
  6. while ($my_query->have_posts()) : $my_query->the_post();
  7. $do_not_duplicate = $post->ID;
  8. $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 5600,1000 ), false, '' );
  9. $thumbnail = get_the_post_thumbnail($post->ID,'thumbnail');
  10. ?>
  11. <a style="background: url(<?php echo $src[0]; ?> ) !important; background-size: cover !important;" class="post" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><span><?php the_title(); ?></span></a>
  12. <?php endwhile; wp_reset_postdata(); // End the loop ?>
  13.  
  14.  
  15. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement