OwlCyberSecurity - MANAGER
Edit File: search.php
<?php /** * The template for displaying Search Results pages. */ get_header(); ?> <div id="main" class="content djax-updatable"> <?php if ( have_posts() ) : //lets handle the title display //we will use the page title ?> <div class="masonry" data-columns> <div class="masonry__item archive-title"> <div class="entry__header"> <h1 class="entry__title"><?php printf( __( 'Search Results for: %s', wpgrade::textdomain() ), '<span>' . get_search_query() . '</span>' ); ?></h1> </div> </div><!-- .masonry__item --> <?php while ( have_posts() ) : the_post(); get_template_part('theme-partials/post-templates/blog-content'); endwhile; ?> </div><!-- .masonry --> <?php else : ?> <?php get_template_part( 'no-results', 'index' ); ?> <?php endif; ?> </div> <?php get_footer(); ?>