Mamta D
0
Q:

how to add site logo in wordpress

add_theme_support( 'custom-logo' );
1
if ( function_exists( 'the_custom_logo' ) ) {
 the_custom_logo();
}
1
function themename_custom_logo_setup() {
 $defaults = array(
 'height'      => 100,
 'width'       => 400,
 'flex-height' => true,
 'flex-width'  => true,
 'header-text' => array( 'site-title', 'site-description' ),
 );
 add_theme_support( 'custom-logo', $defaults );
}
add_action( 'after_setup_theme', 'themename_custom_logo_setup' );
0

New to Communities?

Join the community