Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Template Name: Most Viewed Posts Page
- */
- ?>
- <?php get_header(); ?>
- <section class="content">
- <?php get_template_part('inc/page-title'); ?>
- <div class="pad group">
- <?php if ((category_description() != '') && !is_paged()) : ?>
- <div class="notebox">
- <?php echo category_description(); ?>
- </div>
- <?php endif; ?>
- <?php
- // set up our custom query arguments
- $my_query_args = array(
- 'meta_key' => 'views',
- 'orderby' => 'meta_value_num',
- 'order' => 'DESC'
- );
- // new instance of WP_Query
- $archive_query = new WP_Query( $my_query_args );
- ?>
- <?php if ( have_posts() ) : ?>
- <?php if ( ot_get_option('blog-standard') == 'on' ): ?>
- <?php while ( $archive_query->have_posts() ): $archive_query->the_post(); ?>
- <?php get_template_part('content-standard'); ?>
- <?php endwhile; ?>
- <?php else: ?>
- <div class="post-list group">
- <?php $i = 1; echo '<div class="post-row">'; while ( $archive_query->have_posts() ): $archive_query->the_post(); ?>
- <?php get_template_part('content'); ?>
- <?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?>
- </div><!--/.post-list-->
- <?php endif; ?>
- <?php get_template_part('inc/pagination'); ?>
- <?php endif; ?>
- </div><!--/.pad-->
- </section><!--/.content-->
- <?php
- // always reset post data after a custom query
- wp_reset_postdata();
- ?>
- <?php get_sidebar(); ?>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment