HEX
Server: LiteSpeed
System: Linux s917.lon1.mysecurecloudhost.com 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: assibfaf (3034)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/assibfaf/public_html/wp-content/themes/zzero/search.php
<?php
/**
 * The template for displaying search results pages
 *
 * @package WordPress
 * @subpackage Gringo
 * @since Gringo 1.0
 */

get_header(); ?> 

<section class="section seo-section section-404">
    <div class="container">
		<?php if ( have_posts() ) : ?>
    		<div class="seo-section__text">
    			<h1 class="title title--md">Search results</h1>
    		</div>
    		<?php 
    		while ( have_posts() ) : the_post(); ?>
    		    <article class="page" id="post-<?php the_ID(); ?>">
                	<?php the_title( sprintf( '<h4><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h4>' ); ?>
                	<em id="resultUrl">[Page] <?php echo esc_url( get_permalink() ); ?><br></em>
                	<?php gringo_excerpt(); ?>
                </article>	
    		<?php 
    		endwhile;
    		// If no content, include the "No posts found" template.
    	else : ?>
			<div class="error404">
            	<div class="section-404">
            		<h1 class="mb-5 text-center">Oops, your search did not match any documents. Sorry!</h1>
            		<?php get_search_form(); ?>
            	</div>
            </div>
		<?php endif; ?>
	</div>
</section>

<?php get_template_part( 'widgets/cta', 'calculator' ); ?>

<?php get_footer(); ?>