WordPress arama sonuçlarında hiçbir yazı yazmıyor (yardım!)
14
●2.305
- 14-09-2013, 14:04:20404.php dosyası var ancak bu dosya sadece xxxx.com/faehghae olduğunda çıkıyor, yani sayfa yoksa...Batuhan adlı üyeden alıntı: mesajı görüntüle
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. - 14-09-2013, 14:06:20mewluthday adlı üyeden alıntı: mesajı görüntüle
<?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. - 14-09-2013, 14:20:09Batuhan adlı üyeden alıntı: mesajı görüntüle
<?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
- 14-09-2013, 16:12:52indexte yoktu ekledim, anasayfada oldu... Ancak hala arama sayfasında yokCebR adlı üyeden alıntı: mesajı görüntüle
- 14-09-2013, 16:14:46search.php ye ekle hocam arkadaşın verdiği kodumewluthday adlı üyeden alıntı: mesajı görüntüle
