Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: switch_theme

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
691
692      update_option( 'current_theme', $new_name );
693
694      if ( is_admin() && false === get_option( 'theme_mods_' . $stylesheet ) ) {
695           $default_theme_mods = (array) get_option( 'mods_' . $new_name );
696           add_option( "theme_mods_$stylesheet", $default_theme_mods );
697      }
698
699      update_option( 'theme_switched', $old_theme->get_stylesheet() );
700      do_action( 'switch_theme', $new_name, $new_theme );
701 }
702
703 /**
704  * Checks that current theme files 'index.php' and 'style.css' exists.
705  *
706  * Does not check the default theme, which is the fallback and should always exist.
707  * Will switch theme to the fallback theme if current theme does not validate.
708  * You can use the 'validate_current_theme' filter to return false to
709  * disable this functionality.