Skip to content

Instantly share code, notes, and snippets.

@braginteractive
Last active April 7, 2017 05:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braginteractive/ce89ed6f5714671f11664711a9dd513e to your computer and use it in GitHub Desktop.
Save braginteractive/ce89ed6f5714671f11664711a9dd513e to your computer and use it in GitHub Desktop.
Add Custom Logo Support to WordPress Theme
/*
* Add custom logo support
*/
add_theme_support( 'custom-logo' );
<?php if( has_custom_logo() ) {
the_custom_logo();
} else { ?>
<h1 class="navbar-brand mb-0"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment