Advertisement
RobertR

Get latest posts - Wordpress

Jul 7th, 2011
150
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="widget">
  2.             <? query_posts(array("cat" => array("214", "215"), "posts_per_page" => 5)); ?>
  3.             <h2>News</h2>
  4.             <? while (have_posts()) : the_post(); ?>
  5.                 <div class="news">
  6.                     <h3 class="title"><a href="<? the_permalink() ?>"><? the_title() ?></a></h3>
  7.                     <ul class="marquee marquee_hide">
  8.                         <li><? the_excerpt() ?></li>
  9.                     </ul>
  10.  
  11.                 </div>
  12.             <? endwhile; ?>
  13.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement