Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. * The featured posts template file.
  2. *
  3. *
  4. * @package WordPress
  5. * @subpackage Newspress
  6. */
  7. ?>
  8. <?php if(get_option('newspress_display_postsgallery') == "on") : $is_empty = true; ?>
  9. <div id="featured" class="clearfix">
  10. <?php $featured_post = new WP_Query('showposts=4&cat=' . get_option("newspress_featured_category"));
  11. if ($featured_post->have_posts()) : while ($featured_post->have_posts()) : $featured_post->the_post();
  12. if(has_post_thumbnail( $post->ID )) : $is_empty = false; ?>
  13. <div class="panel">
  14. <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'large' ); ?>
  15. <img id="thumbnail-<?php echo $post->ID; ?>" src="<?php bloginfo("template_directory"); ?>/timthumb.php?src=<?php echo $image[0]; ?>&w=220&h=250&zc=1" border="0" />
  16. <div class="panel-meta">
  17. <h3><a href="<?php the_permalink(); ?>" title="Continue reading <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  18. <p><?php echo substr(get_the_excerpt(),0,180); ?></p>
  19. </div>
  20. </div>
  21. <?php endif; endwhile; endif; if($is_empty) { echo '<p align="center" style="padding:5px; margin:0;">Eh! Nothing in here?</p>'; } wp_reset_query(); ?>
  22. </div><!-- #featured posts -->
  23. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement