Guest User

loop.php

a guest
Jan 25th, 2016
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <div id="post-<?php the_ID(); ?>" <?php post_class('blog_post'); ?>>
  2. <div class="blog_postcontent">
  3. <?php if(has_post_thumbnail()) :?>
  4. <div class="image_frame">
  5. <a href="<?php the_permalink(); ?>">
  6. <?php the_post_thumbnail('small_thumbs'); ?>
  7. </a>
  8. </div>
  9. <?php endif; ?>
  10. <h3><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3>
  11. <ul class="post_meta_links">
  12. <li><?php echo get_the_date(); ?></li>
  13. <li class="post_by"><i><?php _e('by:','weblizar'); ?></i>&nbsp;&nbsp;<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author(); ?></a>&nbsp;</li>
  14. <?php if(get_the_tag_list() != '' ) { ?>
  15. <li class="post_categoty"><i><?php _e('in:','weblizar'); ?></i>&nbsp;&nbsp;<?php the_tags('', ' ', ''); ?>&nbsp;</li>
  16. <?php } ?>
  17. <li class="post_comments"><i><?php _e('note:','weblizar'); ?></i>&nbsp;&nbsp;<?php comments_number( "<strong>0</strong> ".__('Comments','weblizar'), "<strong>1</strong> ".__('Comment' ,'weblizar'),"<strong>%</strong>".__('Comments','weblizar')); ?>&nbsp;</li>
  18. </ul>
  19. <div class="clearfix"></div>
  20. <div class="margin_top1"></div>
  21. <?php the_excerpt(__('Read more...','weblizar')); ?>
  22. </div>
  23. </div><!-- /# end post -->
  24. <div class="clearfix divider_dashed9"></div>
Add Comment
Please, Sign In to add comment