Wordpress - Themes and Appearance
Given this code snippet in a WordPress theme's
functions.php:
add_theme_support('custom-logo');
function display_logo() {
the_custom_logo();
}
display_logo();
What will be the output on the site if no logo is set in the Customizer?