File: /home/storage/162/3480162/user/htdocs/wp-content/themes/colormag/archive.php
<?php
/**
* The template for displaying Archive page.
*
* @package ThemeGrill
* @subpackage ColorMag
* @since ColorMag 1.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();
/**
* Hook: colormag_before_body_content.
*/
do_action( 'colormag_before_body_content' );
?>
<div id="primary">
<div id="content" class="clearfix">
<?php
if ( have_posts() ) :
/**
* Functions hooked into colormag_action_archive_header action.
*
* @hooked colormag_archive_header - 10
*/
do_action( 'colormag_action_archive_header' );
/**
* Hook: colormag_before_archive_page_loop.
*/
do_action( 'colormag_before_archive_page_loop' );
?>
<div class="article-container">
<?php
while ( have_posts() ) :
the_post();
/**
* Include the Post-Type-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
*/
get_template_part( 'content', 'archive' );
endwhile;
?>
</div>
<?php
/**
* Hook: colormag_after_archive_page_loop.
*/
do_action( 'colormag_after_archive_page_loop' );
if ( true === apply_filters( 'colormag_archive_page_navigation_filter', true ) ) :
get_template_part( 'navigation', 'archive' );
endif;
else :
if ( true === apply_filters( 'colormag_archive_page_no_results_filter', true ) ) :
get_template_part( 'no-results', 'archive' );
endif;
endif;
?>
</div><!-- #content -->
</div><!-- #primary -->
<?php
colormag_sidebar_select();
/**
* Hook: colormag_after_body_content.
*/
do_action( 'colormag_after_body_content' );
get_footer();