Custom Logo | Adding Custom Logo support to your Theme

 header.php

 

 <a  href="<?php echo get_home_url(); ?>"  class="navbar-brand ">
        <?php
        if ( function_exists( 'the_custom_logo' ) ) {
            if( has_custom_logo() ){
            the_custom_logo();
           }
           else{
               bloginfo( 'name' );
           }
        }
        ?></a> 

 

functions.php 

/** custom logo **/
   add_theme_support( 'custom-logo', array(
       'height'      => 60,
       'width'       => 400,
       'flex-height' => true,
       'flex-width'  => true,
       'header-text' => array( 'site-title', 'site-description' ),
   ) );

 


 

Comments