Edit File: search.php
<?php /** * The template for displaying search results pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result * * @package temajet */ get_header(); ?> <main id="primary" class="site-main"> <div class="archive-title"> <div class="container"> <ol> <li><a href="<?php echo esc_url(home_url('/')); ?>"><?php esc_html_e('Anasayfa', 'temajet'); ?></a></li> <li> • </li> <li><?php printf( esc_html__( 'Arama Sonuçları: %s', 'temajet' ), '<span>' . get_search_query() . '</span>' ); ?></li> </ol> <h1> <?php /* translators: %s: search query. */ printf( esc_html__( 'Arama Sonuçları: %s', 'temajet' ), '<span>' . get_search_query() . '</span>' );?> </h1> </div> </div> <div id="jet-home-area" class="container"> <div class="row"> <div id="jet-home-main"> <div class="jet-pm jet-pm-1"> <?php wp_reset_postdata(); if (have_posts() ) { while ( have_posts() ) : the_post(); get_template_part( 'template-parts/post/post','1' ); endwhile; the_posts_pagination( array( 'mid_size' => 1, 'prev_text' => __( '<i class="fas fa-angle-left"></i>', 'temajet' ), 'next_text' => __( '<i class="fas fa-angle-right"></i>', 'temajet' ), ) ); } else { echo '<p style="margin-bottom: 25px;">'; echo _e('Üzgünüz yazı bulunamadı. Başka bir şey aramayı deneyin.', 'temajet'); echo '</p>'; echo '<section class="widget_search">'; get_search_form(); echo '</section>'; } wp_reset_postdata(); ?> </div> </div> <?php get_sidebar(); ?> </div> </div> </main><!-- #main --> <?php get_sidebar(); get_footer();