Advertisement
robcroft

slingshot group loop

Jan 16th, 2012
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <?php global $theme;?>
  2. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  3. <div id="post-<?php the_ID(); ?>" <?php post_class('block-item-big'); ?>>
  4. <?php if(has_post_thumbnail()): ?>
  5. <?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'thumb-medium'); ?>
  6. <div class="block-image"><a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><img src="<?php echo $image[0]; ?>" alt="<?php the_title(); ?>" width='130' height='90' /></a></div>
  7. <?php endif; ?>
  8. <h2><a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><?php the_title(); ?></a></h2>
  9. <span class="block-meta">
  10. <span class="heading-author"><?php the_author_posts_link(); ?></span>
  11. <span class="heading-date"><?php the_time('F j, Y'); ?></span>
  12. <span class="heading-comments"><?php comments_popup_link(__('No Comments &#187;','IziThemes'), __('1 Comment &#187;','IziThemes'), '% '.__('Comments &#187;','IziThemes')); ?></span>
  13. <?php edit_post_link(__('Edit this post','IziThemes'),' | <span>','</span>'); ?>
  14. </span>
  15. <p><?php echo $theme->shorten(get_the_excerpt(), 30,'...'); ?> <a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><span class="block-arrows"><?php _e('Read More', 'IziThemes'); ?> &raquo;</span></a></p>
  16. <div class="clear"></div>
  17. </div>
  18. <?php endwhile; endif; ?>
  19.  
  20. <?php $theme->pagination($pages = '', $range = 2); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement