Dediğinizi uyguladım yazılar biraz ufaldı.Ama değişen birşey yok.
Alıntı
<!-- Sağ -->
<div id="sag">
<?php if (is_single()){ ?>
<!-- Benzer Videolar -->
<h1>Benzer Videolar</h1>
<div class="sonYorumlananlar" style="height: 887px">
<ul>
<?php wpn_content_limit(get_the_content(),40); ?>
<?php $categories = get_the_category($post->ID);
if ($categories){
$category_ids = array();
foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
$sayi = get_option('bvsy_benzer');
if ($sayi == ''){
$sayi = 16;
}
$args=array(
'category__in' => $category_ids,
'post__not_in' => array($post->ID),
'showposts' => $sayi,
'caller_get_posts'=> 1
);
$my_query = new wp_query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) {
$my_query->the_post();
$resim = get_post_meta($post->ID, 'resim', true);
if (empty($resim)){
$resim = get_option('home')."/wp-content/themes/bvsy/images/resimyok.jpg";
} ?>
<li>
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>">
<img src="<?php echo $resim; ?>" alt="<?php the_title(); ?>"/>
<span class="syBaslik"><?php the_title(); ?></span>
<span class="syKategori"><?php $category = get_the_category($post->ID); echo $category[0]->cat_name.' '.$category[1]->cat_name; ?></span>
</a>
</li>
<?php
}
}
wp_reset_query();
} ?>
</ul>
</div>
<!--#Benzer Videolar -->
<?php } ?>
<?php if (get_option('bvsy_reklam_sidebar_pasif') == false){ ?>
<!-- Reklam -->
<div class="sagReklam">
<?php if (get_option('bvsy_reklam_sidebar') == ''){ ?>
<a href="#">
<img src="<?php echo bloginfo('template_url'); ?>/images/reklam2.png" alt="" />
</a>
<?php }else {echo stripslashes(get_option('bvsy_reklam_sidebar'));} ?>
</div>
<!--#Reklam -->
<?php } ?>
<!-- Kategoriler -->
<h1>Kategoriler</h1>
<div id="kategoriler">
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
<div class="clear"></div>
</div>
<!--#Kategoriler -->
<!-- Etiketler -->
<h1>Etiket Bulutu</h1>
<div id="etiketler">
<?php wp_tag_cloud('smallest=10&largest=10'); ?>
</div>
<!--#Etiketler -->
<?php if (get_option('bvsy_facebook') != '') { ?>
<!-- Facebook -->
<div class="fb-like-box" data-href="http://www.facebook.com/<?php echo get_option('bvsy_facebook'); ?>" data-width="250" data-show-faces="true" data-stream="false" data-header="false"></div>
<!--#Facebook -->
<?php } ?>
</div>
<!--#Sağ -->