replace all mt- to sad-

This commit is contained in:
2025-05-20 23:36:11 -07:00
parent 0869581510
commit faaaaafb39
35 changed files with 637 additions and 637 deletions

View File

@ -7,23 +7,23 @@
* @package Sophia After Dark
* @since 1.0.0
*/
$archive_style = get_theme_mod( 'sophia_after_dark_archive_style', 'mt-archive--masonry-style' );
$archive_style = get_theme_mod( 'sophia_after_dark_archive_style', 'sad-archive--masonry-style' );
get_header();
?>
<div class="mt-page-content-wrapper">
<div class="sad-page-content-wrapper">
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main" aria-label="<?php esc_attr_e( 'Search Results', 'sophia-after-dark' ); ?>">
<?php
if ( 'mt-archive--block-grid-style' === $archive_style ) {
if ( 'sad-archive--block-grid-style' === $archive_style ) {
echo '<div class="archive-grid-post-wrapper">';
}
if ( have_posts() ) :
if ( 'mt-archive--masonry-style' === $archive_style ) :
if ( 'sad-archive--masonry-style' === $archive_style ) :
?>
<div class="sophia-after-dark-content-masonry">
<div id="mt-masonry">
<div id="sad-masonry">
<?php
endif;
@ -33,7 +33,7 @@ get_header();
get_template_part( 'template-parts/content', 'search' );
endwhile;
if ( 'mt-archive--masonry-style' === $archive_style ) :
if ( 'sad-archive--masonry-style' === $archive_style ) :
?>
</div>
</div>
@ -47,7 +47,7 @@ get_header();
endif;
if ( 'mt-archive--block-grid-style' === $archive_style ) {
if ( 'sad-archive--block-grid-style' === $archive_style ) {
echo '</div>';
}
?>