HEX
Server: nginx/1.24.0
System: Linux nowruzgan 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64
User: babak (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/babazi.club/root/wp-content/themes/untitled/search.php
<?php
/**
 * The template for displaying Search Results pages.
 *
 * @package untitled
 */

get_header(); ?>

	<div id="main" class="site-main">
		<section id="primary" class="content-area">
			<div id="content" class="site-content">

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

				<header class="page-header">
					<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'untitled' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
				</header><!-- .page-header -->

				<?php
						while ( have_posts() ) :
							the_post();

							get_template_part( 'content', 'search' );
						endwhile;
						untitled_content_nav( 'nav-below' );

					else :
						get_template_part( 'no-results', 'search' );

					endif;
				?>

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

<?php
get_sidebar();
get_footer();