WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
808 | update_option( 'theme_switched', $old_theme->get_stylesheet() ); |
809 | /** |
810 | * Fires after the theme is switched. |
811 | * |
812 | * @since 1.5.0 |
813 | * |
814 | * @param string $new_name Name of the new theme. |
815 | * @param WP_Theme $new_theme WP_Theme instance of the new theme. |
816 | */ |
817 | do_action( 'switch_theme', $new_name, $new_theme ); |
818 | } |
819 |
|
820 | /** |
821 | * Checks that current theme files 'index.php' and 'style.css' exists. |
822 | * |
823 | * Does not check the default theme, which is the fallback and should always exist. |
824 | * Will switch theme to the fallback theme if current theme does not validate. |
825 | * You can use the 'validate_current_theme' filter to return false to |
826 | * disable this functionality. |