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: archive.php
<?php /** * The template for displaying archive pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @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 echo wp_kses_post( get_the_archive_title() ); ?></h1> </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