404.php dosyası var ancak bu dosya sadece xxxx.com/faehghae olduğunda çıkıyor, yani sayfa yoksa...
Benim istediğim arama sonuçlarında birşey yazsın; bulunamadı gibi...
search.php 'de yazmıyor, o yüzden konu açtım.
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<?php the_tags( '<p>Etiketler: ', ', ', '</p>');?>
<div class="title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="postdata"><span class="category"><?php the_category(', ') ?></span> <span class="comments"><?php comments_popup_link('Yorum Yok »', '1 Yorum »', '% Yorum »'); ?></span></div>
</div>
<div class="entry">
<?php the_excerpt(); ?>
</div><!--/entry -->
</div><!--/post -->
<?php endwhile; ?>
<div class="page-nav"> <span class="previous-entries"><?php next_posts_link('Önceki Sayfa') ?></span> <span class="next-entries"><?php previous_posts_link('Sonraki Sayfa') ?></span></div><!-- /page nav -->
<?php else : ?>
<h2>Bulunamadı</h2>
<p>Lütfen farklı bir arama yapınız.</p>
<?php endif; ?>
</div><!--/content -->
</div><!--/left-col -->
<?php get_sidebar(); ?></div><?php get_footer(); ?>benim search.php bu isterseniz buradan yola çıkarak düzenleyin hocam. İsterseniz search.php dosyanızı ekleyin buraya elimden geldiğince yardımcı olmaya çalışayım.