Sizin verdiğiniz kodları böyle yerleştirdim :
<h2>IMDB En Kaliteliller</h2><div class="categories">
<?php  
$puan = get_post_meta($post->ID, 'imdb', true); 
if (get_post_meta($post->ID, 'imdb', true)) 
{ 
    foreach (get_post_meta($post->ID, "imdb", true) as $veri) 
    { 
        if ($veri >= "7" && $veri <= "10" && is_float($veri)) 
        { 
            echo $veri; 
        } 
    } 
} 
else 
{ 
echo 'Bilinmiyor...'; 
}  
?>
Bunlar da sidebar'da olan ve çalışan diğer kodlar.
<h2>En Çok Izlenenler</h2>
<div class="categories">
			<ul>
		 <?php get_most_viewed('', 5); ?>
			</ul>
		</div>
<div class="clear"></div>
	<h2>+ Kategoriler</h2>
		<div class="categories">
			<ul>
			<?php wp_list_categories('show_option_all&orderby=name&title_li=&depth=1'); ?>
			</ul>
		</div>
	<div class="clear"></div>