WordPress Plugins > WP-PostViews

Sorting this layout by views?

(1/1)

xxxhackaxxx:
My website is a Flash Games website and i want to list the 8 most viewed games. This is the code i use to show the 6 latest games (recently added), can someone edit it to sort by views? I have tried everything to my limit knowledge.


--- Code: ---<div class="tab-content" style="display: block">
<p>
<?php
$args = array( 'post_type' => 'games', 'posts_per_page' => 6, 'orderby' => 'date', 'order' => 'DESC' );
$loop = new WP_Query( $args );
$i = 1;
while ( $loop->have_posts() ) : $loop->the_post(); ?>

<?php if($i%2 == 0) : ?>
<div class="one_half last">
<div class="game-item-cats second">
<div class="game-item-thumb"><?php if ( get_post_meta($post->ID, 'mabp_thumbnail_url', true) ) : ?> <img class="thumb" src="<?php echo get_post_meta($post->ID, 'mabp_thumbnail_url', true) ?>" alt="<?php the_title(); ?>" /><?php endif; ?></div>
<h5><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h5>
<span class="game-item-date"><?php the_time( get_option('date_format') ); ?> - </span><?php the_excerpt(); ?><span class="game-item-categry"><?php if(function_exists('the_views')) { the_views(); } ?> <b>&nbsp|&nbsp</b><?php the_category(', ') ?></span></div></div>

<?php else : ?>

<div class="one_half">
<div class="game-item-cats">
<div class="game-item-thumb"><?php if ( get_post_meta($post->ID, 'mabp_thumbnail_url', true) ) : ?> <img class="thumb" src="<?php echo get_post_meta($post->ID, 'mabp_thumbnail_url', true) ?>" alt="<?php the_title(); ?>" /><?php endif; ?></div>
<h5><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h5>
<span class="game-item-date"><?php the_time( get_option('date_format') ); ?> - </span><?php the_excerpt(); ?><span class="game-item-categry"><?php if(function_exists('the_views')) { the_views(); } ?><b>&nbsp|&nbsp</b><?php the_category(', ') ?></span></div></div>
<?php endif; ?>

<?php $i++; ?>

<?php endwhile; ?>
</p>
</div>
--- End code ---



Help would me VERY much appreciated, usually i can work something out, but this i have been working on for weeks!!

Navigation

[0] Message Index

Go to full version