wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_delete_site_logo_on_remove_custom_logo_on_setup_theme › WordPress Function
Seit5.8.0
Veraltetn/v
› _delete_site_logo_on_remove_custom_logo_on_setup_theme ( Keine Parameter )
| Definiert in: |
|
| Codex: |
Hooks `_delete_site_logo_on_remove_custom_logo` in `update_option_theme_mods_$theme`.
Hooks_delete_site_logo_on_remove_theme_mods in delete_option_theme_mods_$theme.
Runs on setup_theme to account for dynamically-switched themes in the Customizer.Quellcode
function _delete_site_logo_on_remove_custom_logo_on_setup_theme() {
$theme = get_option( 'stylesheet' );
add_action( "update_option_theme_mods_$theme", '_delete_site_logo_on_remove_custom_logo', 10, 2 );
add_action( "delete_option_theme_mods_$theme", '_delete_site_logo_on_remove_theme_mods' );
}