Advertisement
Mauro777

Untitled

Jun 17th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1.                 <?php
  2.                 $args = array(
  3.                         'category_name' => 'news',
  4.                         'posts_per_page' => 3,
  5.                         'oder' => 'ASC',
  6.                         );
  7.  
  8.                 $my_query = new WP_Query( $args );
  9.  
  10.                 if( $my_query->posts ){
  11.                 foreach( $my_query->posts as $post ){
  12.                 setup_postdata( $post );
  13.                 }
  14.                 }
  15.                 wp_reset_postdata(); ?>
  16.  
  17.                     <article id="two" class="wrapper alt style2">
  18.                         <section class="spotlight">
  19.                             <div class="image"><?php the_post_thumbnail(array(748,529)); ?></div><div class="content">
  20.                                 <a href="<?php the_permalink(); ?>"><h2><?php the_title(); ?></h2></a>
  21.                                 <p><?php the_content();?></p>
  22.                             </div>
  23.                         </section>
  24.                     </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement