File Editor
Directories:
.. (Back)
assets
demo
inc
languages
template-parts
Files:
404.php
archive.php
class.theme-modules.php
comments.php
footer.php
functions.php
header.php
home.php
index.php
page.php
search.php
searchform.php
sidebar.php
single-portfolio.php
single.php
style.css
template-layout-builder.php
Create New File
Create
Edit File: search.php
<?php /** * The template for displaying search results pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result * * @package quarty */ get_header(); ?> <div class="qrt-left-content"> <?php $layout = get_field( 'blog_layout', 'option' ); ?> <!-- section title --> <div class="qrt-section-title<?php if ( $layout != 1 ) : ?> archive-row-title<?php endif; ?>"> <!-- row --> <div class="row"> <!-- col --> <div class="col-lg-12"> <h1 class="title--h2"> <?php /* translators: %s: search query. */ printf( esc_html__( 'Search: %s', 'quarty' ), '<span>' . esc_html( get_search_query() ) . '</span>' ); ?> </h1> <div class="qrt-el-suptitle"> <p class="description description-search"><?php echo esc_html__( 'Search Results', 'quarty' ); ?></p> </div> </div> <!-- col end --> </div> <!-- row end --> </div> <!-- section title end --> <?php get_template_part( 'template-parts/archive-list' ); ?> </div> <?php get_footer();
Save Changes
Rename File
Rename