Advertisement
empulse

Press Template

Aug 24th, 2011
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Press
  4. */
  5. ?>
  6.  
  7. <?php get_header(); ?>
  8. <script src="js/swfobject.js" type="text/javascript" language="javascript" ></script>
  9. <script src="js/swfs_divs.js" type="text/javascript" language="javascript" ></script>
  10.  
  11.  
  12. <div class="contentArea">
  13. <div class="container">
  14. <div class="contentLeft">
  15. <div id="swf-globe-plain"><img class="middle" src="wp-content/themes/MaybeMarquis/images/globe-plain.gif" width="350" height="350" alt="globe"></div>
  16. </div>
  17.  
  18. <div class="contentRight">
  19.  
  20. <?php
  21. $args = array( 'numberposts' => 2, 'category' => 7,);
  22. $lastposts = get_posts( $args );
  23. foreach($lastposts as $post) : setup_postdata($post); ?>
  24. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  25. <?php the_excerpt();?>
  26. <?php endforeach; ?>
  27. </div>
  28. </div>
  29.  
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement