.......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.
<?php get_template_part("header") ?>
<?php global $cx ?>
<div id="icerik">
<section id="sol">
<h1 class="kategori-baslik"><strong>"<?=get_query_var('s')?>"</strong> için arama sonuçları</h1>
<?php
wp_reset_query();
$args = array(
'post_type' => 'post',
'orderby' => 'date',
'posts_per_page' => intval(get_option('posts_per_page')),
'paged' => get_query_var('paged'),
's' => get_query_var('s')
);
query_posts($args);
?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part("partials/category", $cx->o('category_style')) ?>
<?php endwhile; ?>
<?php wp_pagenavi() ?>
</section><!--//sol-->
<aside id="sag">
<?php if (is_active_sidebar('category-sidebar')) : ?>
<?php dynamic_sidebar('category-sidebar'); ?>
<?php endif; ?>
</aside><!--//sag-->
<div class="clear"></div>
</div><!--//icerik-->
</div><!--//wrapp-->
<?php get_template_part("footer") ?>Benim search.php yapamadım. Aslında yaptım ancak bu seferde: ne ararsan ara o yazı çıkıyor