Siteniz suspend olmuş..İndex.php dosyanızın kodlarını koyarmısınız buraya?
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="orta">
<h1>Yeni Eklenenler</h1>
<div class="orta-ici">
<?php
global $default_yenivideo;
$yenivideo = get_option('yenivideo');
if ($yenivideo === false) $yenivideo= $default_yenivideo;
$sayi = (stripslashes($yenivideo));
?>
<?php $posts=query_posts($query_string . '&posts_per_page='.$sayi.'&cat=-17513'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="kutu">
<div class="kutu-resim">
<?php if( get_post_meta($post->ID, "resim", true) ): ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img style="border-width: 0px; height: 84px; width: 94px;" src="<?php echo get_post_meta($post->ID, "resim", true); ?>" alt="<?php the_title(); ?>" width="70" height="70"/></a>
<?php else: ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img style="border-width: 0px; height: 84px; width: 94px;" src="<?php bloginfo('template_url'); ?>/resimler/yok.png" alt="<?php the_title(); ?>" /></a>
<?php endif; ?>
</div>
<div class="kutu-icerik">
<a href="<?php the_permalink() ?>" style="color:#FFCC00; font-weight:bold; font-size:11px;" title="<?php the_title(); ?>"><?php the_title(); ?></a><br />
Kategori: <strong><?php the_category(', '); ?></strong><br/>
İzlenme: <strong><?php if(function_exists('the_views')) { the_views(); } ?></strong><br />
Etiketler: <a /><?php the_tags(' ', ', ', ''); ?>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
<?php include (TEMPLATEPATH . '/sidebar2.php'); ?>
<?php get_footer(); ?>