i tried all what was written above but i couldnot find anything in search.php
this is the code in my search.php :
<?php
/**
* The template for displaying Search Results pages.
*
* @package Blue Planet
*/
get_header(); ?>
<section id=”primary” class=”content-area col-md-8 col-sm-12 col-xs-12 <?php echo blue_planet_layout_setup_class(); ?>”>
<main id=”main” class=”site-main” role=”main”>
<?php if ( have_posts() ) : ?>
<header class=”page-header”>
<h1 class=”page-title”><?php printf( __( ‘Search Results for: %s’, ‘blue-planet’ ), ‘<span>’ . get_search_query() . ‘</span>’ ); ?></h1>
</header><!– .page-header –>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, ‘search’ ); ?>
<?php endwhile; ?>
<?php blue_planet_paging_nav(); ?>
<?php else : ?>
<?php get_template_part( ‘content’, ‘none’ ); ?>
<?php endif; ?>
</main><!– #main –>
</section><!– #primary –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
please help le if you have any idea how should i do this