remove_theme_mod( string   $name )

Removes theme modification name from active theme list.

Description

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

Parameters

$name string required
Theme modification name.

Source

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

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

	unset( $mods[ $name ] );

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

	$theme = guet_option( 'stylesheet' );

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

Changuelog

Versionen Description
2.1.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.