Bump to 1.4.0, made some fixes for 8.2+
This commit is contained in:
87
archive.php
87
archive.php
@ -12,52 +12,59 @@ $archive_style = get_theme_mod( 'sophia_after_dark_archive_style', 'mt-archive--
|
||||
get_header();
|
||||
?>
|
||||
<div class="mt-page-content-wrapper">
|
||||
<div itemscope id="primary" class="content-area">
|
||||
<main id="main" class="site-main">
|
||||
<?php
|
||||
if ( 'mt-archive--block-grid-style' === $archive_style ) {
|
||||
echo '<div class="archive-grid-post-wrapper">';
|
||||
}
|
||||
if ( have_posts() ) :
|
||||
if ( 'mt-archive--masonry-style' === $archive_style ) {
|
||||
?>
|
||||
<div id="primary" class="content-area" itemscope itemtype="https://schema.org/CollectionPage">
|
||||
<main id="main" class="site-main" role="main" aria-label="<?php esc_attr_e( 'Archive Content', 'sophia-after-dark' ); ?>">
|
||||
|
||||
<?php if ( 'mt-archive--block-grid-style' === $archive_style ) : ?>
|
||||
<div class="archive-grid-post-wrapper">
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<?php if ( 'mt-archive--masonry-style' === $archive_style ) : ?>
|
||||
<div class="sophia-after-dark-content-masonry">
|
||||
<div id="mt-masonry">
|
||||
<?php
|
||||
}
|
||||
/* Start the Loop */
|
||||
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( 'template-parts/content', get_post_type() );
|
||||
<?php endif; ?>
|
||||
|
||||
endwhile;
|
||||
<?php
|
||||
// Start the Loop
|
||||
while ( have_posts() ) :
|
||||
the_post();
|
||||
|
||||
if ( 'mt-archive--masonry-style' === $archive_style ) {
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
// Load post template part
|
||||
get_template_part( 'template-parts/content', get_post_type() );
|
||||
|
||||
the_posts_pagination();
|
||||
else :
|
||||
get_template_part( 'template-parts/content', 'none' );
|
||||
endwhile;
|
||||
?>
|
||||
|
||||
endif;
|
||||
<?php if ( 'mt-archive--masonry-style' === $archive_style ) : ?>
|
||||
</div><!-- #mt-masonry -->
|
||||
</div><!-- .sophia-after-dark-content-masonry -->
|
||||
<?php endif; ?>
|
||||
|
||||
if ( 'mt-archive--block-grid-style' === $archive_style ) {
|
||||
echo '</div>';
|
||||
}
|
||||
?>
|
||||
</main>
|
||||
</div>
|
||||
<?php
|
||||
// Archive pagination
|
||||
the_posts_pagination( array(
|
||||
'prev_text' => __( 'Previous', 'sophia-after-dark' ),
|
||||
'next_text' => __( 'Next', 'sophia-after-dark' ),
|
||||
'before_page_number' => '<span class="screen-reader-text">' . esc_html__( 'Page', 'sophia-after-dark' ) . ' </span>',
|
||||
) );
|
||||
?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<?php get_template_part( 'template-parts/content', 'none' ); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( 'mt-archive--block-grid-style' === $archive_style ) : ?>
|
||||
</div><!-- .archive-grid-post-wrapper -->
|
||||
<?php endif; ?>
|
||||
|
||||
</main><!-- #main -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
</div>
|
||||
<?php
|
||||
get_footer();
|
||||
</div><!-- .mt-page-content-wrapper -->
|
||||
|
||||
<?php get_footer(); ?>
|
||||
|
Reference in New Issue
Block a user