Skip to content

Commit

Permalink
fix: improve empty check for slide nav
Browse files Browse the repository at this point in the history
  • Loading branch information
paulschreiber committed Mar 14, 2024
1 parent 84f8ce9 commit b95d9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-content/themes/landpks/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
<ul id="mobile_menu_slide" class="<?php echo esc_attr( $slide_menu_class ); ?>">

<?php
if ( '' === $slide_nav ) :
if ( empty( $slide_nav ) ) :
?>
<?php if ( 'on' === et_get_option( 'divi_home_link' ) ) { ?>
<li
Expand Down

0 comments on commit b95d9be

Please sign in to comment.