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 |
|---|---|
| 838 | * See {@see 'after_switch_theme'}. |
| 839 | * |
| 840 | * @since 1.5.0 |
| 841 | * @since 4.5.0 Introduced the `$old_theme` parameter. |
| 842 | * |
| 843 | * @param string $new_name Name of the new theme. |
| 844 | * @param WP_Theme $new_theme WP_Theme instance of the new theme. |
| 845 | * @param WP_Theme $old_theme WP_Theme instance of the old theme. |
| 846 | */ |
| 847 | do_action( 'switch_theme', $new_name, $new_theme, $old_theme ); |
| 848 | } |
| 849 | |
| 850 | /** |
| 851 | * Checks that the active theme has the required files. |
| 852 | * |
| 853 | * Standalone themes need to have a `templates/index.html` or `index.php` template file. |
| 854 | * Child themes need to have a `Template` header in the `style.css` stylesheet. |
| 855 | * |
| 856 | * Does not initially check the default theme, which is the fallback and should always exist. |