W3cubDocs

/WordPress

remove_theme_mod( string $name )

Removes theme modification name from current theme list.

Description

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

Parameters

$name

(string) (Required) Theme modification name.

Source

File: wp-includes/theme.php

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

Changelog

Version Description
2.1.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/remove_theme_mod