_delete_site_logo_on_remove_theme_mods

The timeline below displays how wordpress function _delete_site_logo_on_remove_theme_mods has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

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');
    }
}

WordPress Version: 5.8

/**
 * Deletes the site logo when all theme mods are being removed.
 */
function _delete_site_logo_on_remove_theme_mods()
{
    if (false !== get_theme_support('custom-logo')) {
        delete_option('site_logo');
    }
}