dragunoff

wpquestions.com, ID = 2383

Jun 5th, 2011
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.50 KB | None | 0 0
  1.  
  2. <?php
  3.  
  4. /*
  5.  
  6. Template Name: Web Portfolio
  7.  
  8. */
  9.  
  10. ?>
  11.  
  12. <?php get_header(); ?>
  13.  
  14. <div class="wrap">
  15.  
  16. <div id="equal-columns-wrap">
  17.  
  18. <!-- ||||SIDEBAR|||| -->
  19.  
  20. <div id="sidebar">
  21.  
  22. <div id="sidebar-border">
  23.  
  24. <?php include (TEMPLATEPATH . '/portfolio-sidebar.php'); ?>
  25.  
  26. </div>
  27.  
  28. </div>
  29.  
  30. <!-- ||||SIDEBAR|||| -->
  31.  
  32. <!-- ||||CONTENT|||| -->
  33.  
  34. <div id="content">
  35.  
  36. <h2 id="web-header">Web &amp; Interactive</h2>
  37.  
  38. <h3 id="web-h3" class="darkblue">A Few Samples of Our Work</h3>
  39.  
  40. <!-- begin portfolio -->
  41.  
  42. <div id="portfolio">
  43.  
  44. <?php $loop = new WP_Query( array( 'post_type' => 'web', 'posts_per_page' => 6 ) ); ?>
  45.  
  46. <?php if ( $loop->have_posts() ) : ?>
  47.  
  48. <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
  49.  
  50. <div class="portfolio-item">
  51.  
  52.     <div class="portfolio-thumb"><a href="<?php the_permalink() ?>" rel="bookmark" title="Portfolio item: <?php the_title_attribute(); ?>"><?php the_post_thumbnail('portfolio-thumb'); ?></a></div>
  53.  
  54.     <h4 class="portfolio-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Portfolio item: <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4>
  55.  
  56. </div>
  57.  
  58. <?php endwhile; ?>
  59.  
  60. <?php wp_pagenavi( array( 'query' => $loop ) ); ?>
  61.  
  62. <?php wp_reset_postdata(); // reset the query ?>
  63.  
  64. <?php endif; ?>
  65.  
  66. <div class="clear"></div>
  67.  
  68. </div><!-- end portfolio -->
  69.  
  70. </div><!-- ||||CONTENT|||| -->
  71.  
  72. </div><!-- closed equal-columns-wrap div -->
  73.  
  74. </div><!-- end the content wrap -->
  75.  
  76. <div class="clear"></div>
  77.  
  78. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment