Advertisement
towfiqi

layout1.php

Aug 16th, 2012
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. <div class="lay1">
  2.  
  3. <div id="content">
  4. <div class="single_wrap">
  5. <div class="single_post">
  6. <?php if(have_posts()): ?><?php while(have_posts()): ?><?php the_post(); ?>
  7. <div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
  8.  
  9. <div class="post_content">
  10. <h2 class="postitle"><?php the_title(); ?></h2>
  11. <div class="single_metainfo">On <?php the_time( get_option('date_format') ); ?><?php if(of_get_option('dissauth_checkbox') == "0"){ ?> by <?php the_author(); ?><?php } ?></div>
  12. <div class="zn_post_wrap"><?php the_content(); ?> </div>
  13. <div style="clear:both"></div>
  14. <?php wp_link_pages('<p class="pages"><strong>'.__('Pages:').'</strong> ', '</p>', 'number'); ?>
  15.  
  16.  
  17. <!--Post Footer-->
  18. <div class="post_foot">
  19. <?php if(of_get_option('disscats_checkbox') == "0"){ ?>
  20. <div class="post_meta">
  21. <?php if( has_category() ) { ?><div class="post_cat"><?php _e('Category' , 'zenon'); ?> : <div class="catag_list"><?php the_category(', '); ?></div></div><?php } ?>
  22.  
  23. <?php if( has_tag() ) { ?><div class="post_tag"><?php _e('Tags' , 'zenon'); ?> : <div class="catag_list"><?php the_tags(' '); ?></div></div><?php } ?>
  24. </div>
  25. <?php } ?>
  26.  
  27. </div><div class="edit"><?php edit_post_link(); ?></div>
  28.  
  29. </div>
  30.  
  31. <?php if(of_get_option('dissshare_checkbox') == "0"){ ?><?php get_template_part('share_this');?><?php } ?>
  32.  
  33. </div>
  34.  
  35. <?php endwhile ?>
  36. <div class="single_skew">
  37. <div class="skew_bottom_big"></div>
  38. <div class="skew_bottom_right"></div>
  39. </div> </div>
  40.  
  41. <div class="comments_template"><?php comments_template('',true); ?></div>
  42. <?php endif ?>
  43.  
  44. </div>
  45.  
  46.  
  47. <?php if (function_exists("znn_paginate")) {znn_paginate();} ?>
  48. <div class="hidden_nav"><?php paginate_links(); ?></div>
  49.  
  50. <!--POST END-->
  51.  
  52. <?php get_sidebar();?>
  53. </div>
  54. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement