Fixed custom logo error in header
This commit is contained in:
parent
1c06c9ecd9
commit
20208211a9
|
@ -47,7 +47,11 @@
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<!-- Your site title as branding in the menu -->
|
<!-- Your site title as branding in the menu -->
|
||||||
<a class="navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php if ( !has_custom_logo() ) { bloginfo( 'name' ) } else { the_custom_logo() } ?></a>
|
<?php if (!has_custom_logo()) { ?>
|
||||||
|
<a class="navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
|
||||||
|
<?php bloginfo( 'name' ); ?>
|
||||||
|
</a>
|
||||||
|
<?php } else { the_custom_logo(); } ?><!-- end custom logo -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -65,7 +69,6 @@
|
||||||
|
|
||||||
</div> <!-- .container -->
|
</div> <!-- .container -->
|
||||||
|
|
||||||
|
|
||||||
</nav><!-- .site-navigation -->
|
</nav><!-- .site-navigation -->
|
||||||
|
|
||||||
</div><!-- .wrapper-navbar end -->
|
</div><!-- .wrapper-navbar end -->
|
||||||
|
|
Reference in New Issue