File Editor
Directories:
.. (Back)
core
css
fonts
images
js
sections
template-parts
upgrade-to-pro
Files:
404.php
archive.php
author.php
breadcrums.php
category.php
class-tgm-plugin-activation.php
comments.php
custom-font.php
footer.php
front-page.php
fullwidth.php
functions.php
header.php
home-template.php
index.php
page.php
readme.txt
search.php
searchform.php
sidebar.php
single.php
style.css
tag.php
template-leftsidebar.php
template-page-builder.php
woocommerce.php
Create New File
Create
Edit File: archive.php
<?php /** * The template for displaying Archive pages. * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package enigma-parallax */ get_header(); $class = ''; $page_header = absint(get_theme_mod( 'page_header', 1 )); if ( $page_header == 1 ) { ?> <div class="enigma_header_breadcrum_title"> <div class="container"> <div class="row"> <?php if(have_posts()) :?> <div class="col-md-12"> <h1><?php the_archive_title(); ?> </h1> </div> <?php endif; ?> </div> </div> </div> <?php } else { $class = 'no-page-header'; } ?> <div class="container"> <div class="row enigma_blog_wrapper <?php echo esc_attr( $class ); ?>"> <div class="col-md-8"> <?php if ( have_posts()): while ( have_posts() ): the_post(); get_template_part('template-parts/post','content'); ?> <?php endwhile; endif; ?> <div class="text-center wl-theme-pagination"> <?php the_posts_pagination() ; ?> <div class="clearfix"></div> </div> </div> <?php get_sidebar(); ?> </div> </div> <?php get_footer(); ?>
Save Changes
Rename File
Rename