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



remove_theme_mod › WordPress Function

Da2.1.0
Deprecaton/a
remove_theme_mod ( $name )
Parametri:
  • (string) $name Theme modification name.
    Richiesto:
Definito a:
Codex:

Removes theme modification name from active theme list.

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


Sorgenti

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