%PDF- %PDF-
Direktori : /home/graphicd/public_html/demo/riverwalkpoa/wp-content/themes/sandwich/ |
Current File : /home/graphicd/public_html/demo/riverwalkpoa/wp-content/themes/sandwich/archive.php |
<?php /** * The template for displaying archive pages */ get_header(); ?> <?php $sandwich_width = get_theme_mod('sandwich_site_width_control','full_width'); if ($sandwich_width == 'full_width'){ $container_fluid = 'container-fluid'; }else{ $container_fluid = 'container'; } ?> <div class="<?php echo esc_html($container_fluid); ?>"> <div class="row"> <div class="col-md-12 col-sm-12"> <div id="primary" class="content-area"> <main id="main" class="site-main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <?php the_archive_title( '<h1 class="page-title">', '</h1>' ); ?> </header><!-- .page-header --> <?php /* Start the Loop */ while ( have_posts() ) : the_post(); get_template_part( 'template-parts/content', get_post_type() ); endwhile; pagainate_link_function(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </main><!-- #main --> </div><!-- #primary --> </div> </div> </div> <?php get_footer();