File Editor
Directories:
.. (Back)
css
font-awesome
images
inc
js
languages
page-templates
Files:
404.php
archive.php
comments.php
content-page.php
content-single.php
content.php
footer.php
front-page.php
functions.php
header.php
index.php
navigation.php
no-results.php
page.php
readme.txt
search.php
searchform.php
sidebar-footer.php
sidebar-left.php
sidebar.php
single.php
style.css
Create New File
Create
Edit File: archive.php
<?php /** * The template for displaying Archive pages * * @package ThemeGrill * @subpackage Himalayas * @since Himalayas 1.0 */ ?> <?php get_header(); ?> <?php do_action( 'himalayas_before_body_content' ); $himalayas_layout = himalayas_layout_class(); ?> <div id="content" class="site-content"> <main id="main" class="clearfix <?php echo $himalayas_layout; ?>"> <div class="tg-container"> <div id="primary" class="content-area"> <?php if ( have_posts() ) : ?> <header class="page-header"> <?php himalayas_archive_title( '<h1 class="page-title">', '</h1>' ); himalayas_archive_description( '<div class="taxonomy-description">', '</div>' ); ?> </header><!-- .page-header --> <?php // Start the Loop. while ( have_posts() ) : the_post(); get_template_part( 'content', get_post_format() ); // End the loop. endwhile; get_template_part( 'navigation', 'archive' ); // If no content, include the "No posts found" template. else : get_template_part( 'no-results', 'archive' ); endif; ?> </div><!-- #primary --> <?php himalayas_sidebar_select(); ?> </div><!-- .tg-container --> </main> </div> <?php //himalayas_sidebar_select(); ?> <?php do_action( 'himalayas_after_body_content' ); ?> <?php get_footer(); ?>
Save Changes
Rename File
Rename