Advertisement
Guest User

Untitled

a guest
Mar 26th, 2011
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.47 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4.     <div id="portfolio-container">
  5.     <div id="portfolio-title">
  6.     <?php single_cat_title(); ?>
  7.     </div>
  8.  
  9.     <?php if (have_posts()) :?>
  10.         <?php $postCount=0; ?>
  11.         <?php while (have_posts()) : the_post();?>
  12.             <?php $postCount++;?>
  13.    
  14.     <div class="entry entry-<?php echo $postCount ;?>">
  15.    
  16.  
  17.         <?php $thumbnail = get_post_meta($post->ID, 'Thumbnail', true); ?>
  18.         <div class="portfolio-thumbnail">
  19.         <?php if($thumbnail !== '') { ?>
  20.         <a class="zoom" rel="group" href="<?php echo $thumbnail; ?>">
  21.         <img src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $thumbnail; ?>&amp;w=90%" alt=""/></a>
  22.         <?php } ?>
  23.  
  24.         </div>
  25.    
  26.     </div>
  27.     <?php endwhile; ?>
  28.  
  29.     <br clear="all" />
  30.  
  31.     <?php if(function_exists('wp_pagenavi')) { // if PageNavi is activated ?>  
  32.     <div id="page-navigator">
  33.     <?php wp_pagenavi(); // Use PageNavi ?>
  34.     </div>  
  35.     <?php } else { // Otherwise, use traditional Navigation ?>  
  36.     <div class="navigation">    
  37.     <div class="floatleft">
  38.     <?php next_posts_link('&laquo; Older Entries') ?>
  39.     </div>  
  40.     <div class="floatright">
  41.     <?php previous_posts_link('Newer Entries &raquo;') ?>
  42.     </div>  
  43.     </div>  
  44.     <?php } ?>
  45.        
  46.     <?php else : ?>
  47.  
  48.         <!--h2>Not Found</h2>
  49.         <div class="entrybody">Sorry, but you are looking for something that isn't here.</div-->
  50.        
  51.         <h2>Under Construction</h2>
  52.         <div class="entrybody">Please check back soon.</div>
  53.  
  54.  
  55.     <?php endif; ?>
  56.  
  57.  
  58. </div>
  59.  
  60. <br clear="all" />
  61.  
  62. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement