if ( have_posts() && is_paged() ) :
// Start the Loop.
$popularpost = new WP_Query( array( 'posts_per_page' => 7, 'meta_key' => 'wpb_post_views_count', 'orderby' => 'meta_value_num', 'order' => 'ASC' ) );
while ( $popularpost->have_posts() ) : $popularpost->the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
endwhile;
// Previous/next post navigation.
twentyfourteen_paging_nav();
endif;
?>