gracias , creo es esto lo queme pides
<h2><?php _e("Top estrenos")?></h2>
<ul class="b">
<?php
$numbers = 1; {
$args = array(
'meta_key' => 'post_views_count',
'orderby' => 'meta_value_num',
'order' => 'DESC',
'posts_per_page' => 10,
'ignore_sticky_posts' => 1
);
$query5 = new WP_Query($args);
while($query5->have_posts()) : $query5->the_post();?>
<li>
<a href="<?php the_permalink();?>" title="<?php the_title();?>">
<div class="im">
<?php if ( has_post_thumbnail() ) {
$foto = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'medium' );
$src = $foto['0'];
echo '<img src="'.$src.'" alt="'.get_the_title().'">';
}else{ ?>
<img src="<?php bloginfo('template_url');?>/images/no-img-home.png" alt="<?php the_title();?>">
<?php }?>
<span><?php echo $numbers;?></span>
</div>
<p>
<?php $thetitle = $post->post_title;
$getlength = strlen($thetitle);
$thelength = 23;
echo substr($thetitle, 0, $thelength);
if ($getlength > $thelength) echo "..";
?></p></a>
<?php if(get_the_term_list($post->ID, 'fecha-estreno')) : ?>
<i><?php echo get_the_term_list($post->ID, 'fecha-estreno', '', ', ', '', true); ?></i>
<?php else : ?>
<i>2030</i>
<?php endif;?>
<?php if(get_post_meta($post->ID, 'imdbRating', true)) : ?>
<i style="background: #3EB6FA;">
<?php echo get_post_meta($post->ID, 'imdbRating', true);?>
</i>
<?php else : ?>
<i style="background: #3EB6FA;">
10,00
</i>
<?php endif;?>
<span>
<!-- rating -->
<span class="abc-c" style="width:65px;float: left;margin-top:2px;">
<span class="abc-r" style="width:<?php $puntuaje = get_post_meta($post->ID, "imdbRating", true); echo $puntuaje[0]*10;?>%;"></span>
</span>
<!-- end rating -->
</span>
</li>
<?php $numbers++; ?>
<?php endwhile; ?>
<?php wp_reset_postdata();?>
<?php } ?>
</ul>
despues me debes explicar como hago para que funcione ,.. no tengo mucho conocimientos de ello , muchas gracias