wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



remove_theme_mods › WordPress Function

Od2.1.0
Przestarzałyn/a
remove_theme_mods ( Brak parametrów )
Zdefiniowane na:
Codex:

Removes theme modifications option for the active theme.



Źródło

function remove_theme_mods() {
	delete_option( 'theme_mods_' . get_option( 'stylesheet' ) );

	// Old style.
	$theme_name = get_option( 'current_theme' );
	if ( false === $theme_name ) {
		$theme_name = wp_get_theme()->get( 'Name' );
	}

	delete_option( 'mods_' . $theme_name );
}