Keresés

Az egyik sablonomnál nem működik a a keresés, ami a sablonban alapból benne van.





404-es hibát jelez, ha valamire rákeresek.











search.php




<?php session_start();?>


<?php get_header(); ?>











<?php if (have_posts()) : ?>


search-big.gif


<?php echo ot_lang( 'search_results' ); ?>







    <?php while (have_posts()) : the_post(); ?>








  • <?php ot_thumb_large(); ?>











    <?php ot_the_content(); ?>











    <?php the_tags('Tags: Tags ',' Tags ', '') ?>














    <?php endwhile; ?>





    [/list]


    <?php ot_paginate();?>


    <?php else : ?>


    <?php include 'search404.php';?>


    <?php endif; ?>








<?php get_footer(); ?>

a search.php teljesen irreveláns ez esetben, ez csak az eredményt jeleníti meg. a Search formot mutasd.











ilyesmit keress:



Code:

<form method="get" id="searchform" action="/">

<input type="text" value="" name="s" id="s" />






// Search





function widget_mytheme_search() {











echo ’







' . ot_lang( 'search' ) . '




    ';


    echo'












    [/list]






';





}


if ( function_exists('register_sidebar_widget') ) {


register_sidebar_widget(__('search'), 'widget_mytheme_search');


}


?>