wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



remove_theme_mod › WordPress Function

Seit2.1.0
Veraltetn/v
remove_theme_mod ( $name )
Parameter:
  • (string) $name Theme modification name.
    Erforderlich: Ja
Definiert in:
Codex:

Removes theme modification name from active theme list.

If removing the name also removes all elements, then the entire option will be removed.


Quellcode

function remove_theme_mod( $name ) {
	$mods = get_theme_mods();

	if ( ! isset( $mods[ $name ] ) ) {
		return;
	}

	unset( $mods[ $name ] );

	if ( empty( $mods ) ) {
		remove_theme_mods();
		return;
	}

	$theme = get_option( 'stylesheet' );

	update_option( "theme_mods_$theme", $mods );
}