Guest User

layout3.php

a guest
Jul 6th, 2012
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.62 KB | None | 0 0
  1. <div id="content">
  2. <div class="lay3">
  3. <div class="lay3_wrap">
  4.                    <?php if(have_posts()): ?><?php while(have_posts()): ?><?php the_post(); ?>
  5.                 <div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
  6.  
  7.                <?php if ( znn_get_custom_field_value('videolink') != "") { ?>
  8.                  <div class="post_image">
  9.                     <iframe width="254" height="180" src="http://www.youtube.com/embed/<?php znn_get_custom_field_value('videolink', true); ?>?rel=0&autohide=1&showinfo=0" frameborder="0"></iframe>
  10.                 </div>              
  11.                <?php } else { ?>
  12.            
  13.                 <div class="post_image">
  14.                      <!--CALL TO POST IMAGE-->
  15.                     <?php if ( has_post_thumbnail() ) : ?>
  16.                     <div class="imgwrap">
  17.  
  18.                         <div class="date_meta"><?php the_time('d'); ?><?php the_time('S'); ?> <?php the_time('M'); ?></div>
  19.                         <div class="block_comm"><?php if (!empty($post->post_password)) { ?>
  20.                 <?php } else { ?><div class="comments"><?php comments_popup_link( __('0</br>Comment', 'zenon'), __('1</br>Comment', 'zenon'), __('%</br>Comments', 'zenon'), '', __('Off' , 'zenon')); ?></div><?php } ?></div>
  21.  
  22.                        
  23.                     <a href="<?php the_permalink();?>"><?php the_post_thumbnail('medium'); ?></a></div>
  24.                    
  25.                     <?php elseif($photo = znn_get_images('numberposts=1', true)): ?>
  26.    
  27.                     <div class="imgwrap">
  28.  
  29.                         <div class="date_meta"><?php the_time('d'); ?><?php the_time('S'); ?> <?php the_time('M'); ?></div>
  30.                         <div class="block_comm"><?php if (!empty($post->post_password)) { ?>
  31.                 <?php } else { ?><div class="comments"><?php comments_popup_link( __('0</br>Comment', 'zenon'), __('1</br>Comment', 'zenon'), __('%</br>Comments', 'zenon'), '', __('Off' , 'zenon')); ?></div><?php } ?></div>
  32.  
  33.                        
  34.                     <a href="<?php the_permalink();?>"><?php echo wp_get_attachment_image($photo[0]->ID ,'medium'); ?></a></div>
  35.                
  36.                     <?php else : ?>
  37.                    
  38.                     <div class="imgwrap">
  39.  
  40.                         <div class="date_meta"><?php the_time('d'); ?><?php the_time('S'); ?> <?php the_time('M'); ?></div>
  41.                         <div class="block_comm"><?php if (!empty($post->post_password)) { ?>
  42.                 <?php } else { ?><div class="comments"><?php comments_popup_link( __('0</br>Comment', 'zenon'), __('1</br>Comment', 'zenon'), __('%</br>Comments', 'zenon'), '', __('Off' , 'zenon')); ?></div><?php } ?></div>
  43.  
  44.                        
  45.                     <a href="<?php the_permalink();?>"><img src="<?php echo get_template_directory_uri(); ?>/images/blank_img.png" alt="<?php the_title_attribute(); ?>" class="znn_thumbnail"/></a></div>  
  46.                              
  47.                     <?php endif; ?>
  48.                 </div>
  49.                                     <?php } ?>
  50.                 <div class="lay3_bridge"></div>
  51.                 <div class="post_content">
  52.                     <h2 class="postitle"><a href="<?php the_permalink();?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  53.                     <?php the_excerpt(); ?>
  54.                    
  55.                 </div>
  56.                
  57.                         </div>
  58.             <?php endwhile ?>
  59.  
  60.             <?php endif ?>
  61. </div>
  62.                             <?php if (function_exists("znn_paginate")) {znn_paginate();} ?>
  63.  
  64.     </div>
  65.  
  66.            
  67.     <?php get_sidebar();?>
  68.     </div>
Advertisement
Add Comment
Please, Sign In to add comment