Skip to content

Commit

Permalink
Update header-mini-hero.php
Browse files Browse the repository at this point in the history
  • Loading branch information
jessuppi authored Aug 4, 2024
1 parent 73c4cd0 commit 57fdb2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion template-parts/header/header-mini-hero.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
$post_id = get_the_ID();
if($hide_title_status == "off" || !metadata_exists( 'post', $post_id, '_mysite_meta_hide_title' ) ) :
?>
<h1 class="mini-hero-title <?php if ( $h1_divider_display == 'everywhere_possible' ) { echo "divide"; } ?>""><?php if ( is_singular() ) { single_post_title(); } elseif ( is_category() ) { single_cat_title(); } ?></h1>
<h1 class="mini-hero-title <?php $h1_divider_display = get_theme_mod( 'hovercraft_h1_divider_display', 'none' );
if ( $h1_divider_display == 'everywhere_possible' ) { echo "divide"; } ?>""><?php if ( is_singular() ) { single_post_title(); } elseif ( is_category() ) { single_cat_title(); } ?></h1>
<?php endif; ?> <!--End the hide title-->

<?php $portal_category = get_theme_mod( 'hovercraft_portal_category', 'none' );
Expand Down

0 comments on commit 57fdb2b

Please sign in to comment.