HEX
Server: Apache
System: Linux server-674799.igrow.ws 5.14.0-611.27.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 4 04:40:11 EST 2026 x86_64
User: elrashedytravel (1025)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/elrashedytravel/public_html/wp-content/themes/reviewnews/search.php
<?php
/**
 * The template for displaying search results pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
 *
 * @package ReviewNews
 */

get_header(); ?>
    <div class="section-block-upper">
    <section id="primary" class="content-area">
        <main id="main" class="site-main">

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

                <header class="header-title-wrapper">
                    <h1 class="page-title"><?php
						/* translators: %s: search query. */
						printf( esc_html__( 'Search Results for: %s', 'reviewnews' ), '<span>' . get_search_query() . '</span>' );
						?></h1>
                </header><!-- .header-title-wrapper -->


				<?php
                $count = 1;
                
                //div wrap start
				do_action( 'reviewnews_archive_layout_before_loop' );
				while ( have_posts() ) : the_post();
                    
                        /*
                     * Include the Post-Format-specific template for the content.
                     * If you want to override this in a child theme, then include a file
                     * called content-___.php (where ___ is the Post Format name) and that will be used instead.
                     */

                        get_template_part('template-parts/content', get_post_format());
                   


                    $count++;
				endwhile;
				//div wrap end
				do_action( 'reviewnews_archive_layout_after_loop' );
				?>

			<?php
			else : ?>
				<?php

				get_template_part( 'template-parts/content', 'none' ); ?>
			<?php

			endif; ?>
            <div class="col col-ten">
                <div class="reviewnews-pagination">
                    <?php reviewnews_numeric_pagination(); ?>
                </div>
            </div>
        </main><!-- #main -->

    </section><!-- #primary -->

<?php
get_sidebar();
?>
    </div>
<?php
get_footer();