WordPress Version: 5.9
/**
* Deletes the site logo when all theme mods are being removed.
*/
function _delete_site_logo_on_remove_theme_mods()
{
global $_ignore_site_logo_changes;
if ($_ignore_site_logo_changes) {
return;
}
if (false !== get_theme_support('custom-logo')) {
delete_option('site_logo');
}
}