View file sportsmag/archive.php

File size: 1.9Kb
<?php
/**
 * The template for displaying archive pages.
 *
 * Learn more: http://codex.wordpress.org/Template_Hierarchy
 *
 * @package SportsMag
 */

get_header(); ?>

<?php do_action( 'sportsmag_before_body_content' ); ?>

<div class="apmag-container">
    <?php   
        $sportsmag_show_breadcrumbs = of_get_option( 'show_hide_breadcrumbs', '1' );
        if ( ( function_exists( 'accesspress_mag_breadcrumbs' ) && $sportsmag_show_breadcrumbs == 1 ) ) {
			    accesspress_mag_breadcrumbs();
            }
    ?>
	<div id="primary" class="content-area">
		<main id="main" class="site-main" role="main">

		<?php
            $sportsmag_archive_template = of_get_option( 'global_archive_template', 'archive-default' );
            if ( have_posts() ) : 
        ?>

			<header class="page-header">
				<?php accesspress_mag_the_archive_title( '<h1 class="page-title"><span>', '</span></h1>' ); ?>
			</header><!-- .page-header -->

			<?php /* Start the Loop */ ?>
			<?php while ( have_posts() ) : the_post(); ?>

				<?php
					/* Include the Post-Format-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 Format name) and that will be used instead.
					 */
                    get_template_part( 'content', $sportsmag_archive_template );
				?>

			<?php endwhile; wp_reset_query(); ?>

			<?php the_posts_navigation(); ?>

		<?php else : ?>

			<?php get_template_part( 'content', 'none' ); ?>

		<?php endif; ?>

		</main><!-- #main -->
	</div><!-- #primary -->

<?php 
 $sportsmag_sidebar_option = of_get_option( 'global_archive_sidebar' ,'right-sidebar' );
 if( $sportsmag_sidebar_option!='no-sidebar' ){
        $sportsmag_option_value = explode( '-', $sportsmag_sidebar_option ); 
        get_sidebar( $sportsmag_option_value[0] );
    }
?>
</div>
<?php do_action( 'sportsmag_after_body_content' ); ?>
<?php get_footer(); ?>