<?php $popularpost = new [COLOR=#ff0000][B]WP_Query[/B][/COLOR]( array( 'posts_per_page' => 7, 'meta_key' => 'wpb_post_views_count', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) );while ( $popularpost->have_posts() ) : $popularpost->the_post(); ?>
<li class="homepost clearfix" id="post-1-<?php the_ID(); ?>">
<div class="entry clearfix equal-block">
<?php include (TEMPLATEPATH . '[COLOR=#ff0000][B]/post-thumb.php[/B][/COLOR]'); ?>
<h3><a href="<?php the_permalink() ?>" rel="dofollow" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php if ( $[COLOR=#ff0000][B]wp_prolific_home_posts_stack[/B][/COLOR] == yes ) { ?>
<?php the_excerpt(); ?>
<?php } else { ?>
<?php
$excerpt = get_the_excerpt();
echo string_limit_words($excerpt,15);
?>
<?php } ?>
</div>
</li>
<?php endwhile; ?>