wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_delete_site_logo_on_remove_custom_logo › WordPress Function

Odn/a
Przestarzałyn/a
_delete_site_logo_on_remove_custom_logo ( $old_value, $value )
Parametry: (2)
  • (array) $old_value Previous theme mod settings.
    Wymagane: Tak
  • (array) $value Updated theme mod settings.
    Wymagane: Tak
Zdefiniowane na:
Codex:

Deletes the site_logo when the custom_logo theme mod is removed.



Źródło

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