Add more then one site logo – custom-logo theme support
I think you might be looking for something like this: add_theme_support( ‘custom-logo’, array( ‘height’ => 480, ‘width’ => 720, ) ); You could also go with: add_theme_support( ‘custom-header’, array( ‘height’ => 480, ‘width’ => 720, ) ); Use the custom-header for the top logo and the custom-logo for the footer (or the other way round). … Read more