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



remove_theme_mod › WordPress Function

Od2.1.0
Przestarzałyn/a
remove_theme_mod ( $name )
Parametry:
  • (string) $name Theme modification name.
    Wymagane: Tak
Zdefiniowane na:
Codex:

Removes theme modification name from active theme list.

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


Źródło

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