wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_delete_site_logo_on_remove_custom_logo › WordPress Function

Dan/a
Deprecaton/a
_delete_site_logo_on_remove_custom_logo ( $old_value, $value )
Parametri: (2)
  • (array) $old_value Previous theme mod settings.
    Richiesto:
  • (array) $value Updated theme mod settings.
    Richiesto:
Definito a:
Codex:

Deletes the site_logo when the custom_logo theme mod is removed.



Sorgenti

function _delete_site_logo_on_remove_custom_logo( $old_value, $value ) {
	global $_ignore_site_logo_changes;

	if ( $_ignore_site_logo_changes ) {
		return;
	}

	// If the custom_logo is being unset, it's being removed from theme mods.
	if ( isset( $old_value['custom_logo'] ) && ! isset( $value['custom_logo'] ) ) {
		delete_option( 'site_logo' );
	}
}