Advertisement
Viper007Bond

Untitled

Nov 29th, 2011
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <div class="front-pg-container-left">
  2.     <?php
  3.  
  4.         global $post;
  5.         $args = array( 'numberposts' => 2, 'category' => 0 );
  6.         $myposts = get_posts( $args );
  7.         foreach( $myposts as $post ) :  setup_postdata($post);
  8.             $image = wp_get_attachment_image_src( get_post_thumbnail_id() );
  9.             $image_url = $image[0];
  10.     ?>
  11.             <div class="front-page-second" style="background-image: url('<?php echo esc_url( $image_url ); ?>');">
  12.                 <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  13.             </div>
  14.         <?php endforeach; ?>
  15. </div>
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement