<?php
$args = array(
'orderby' => 'meta_value',
'meta_key' => 'post_views_count',
'order' => 'DESC',
'post_status' => 'publish'
);
$ranking = 0;
?>
<?php query_posts($args); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts()) : the_post();
$ranking++; ?>
<!-- HTML -->
<?php endwhile; else: ?>
<?php endif; ?>
$args = array(
'orderby' => 'meta_value',
'meta_key' => 'post_views_count',
'order' => 'DESC',
'post_status' => 'publish'
);
$ranking = 0;
?>
<?php query_posts($args); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts()) : the_post();
$ranking++; ?>
<!-- HTML -->
<?php endwhile; else: ?>
<?php endif; ?>