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 | 
|---|---|
| 2188 |  | 
| 2189 |      /** | 
| 2190 |       * Filters the expanded array of starter content. | 
| 2191 |       * | 
| 2192 |       * @since 4.7.0 | 
| 2193 |       * | 
| 2194 |       * @param array $content Array of starter content. | 
| 2195 |       * @param array $config  Array of theme-specific starter content configuration. | 
| 2196 |       */ | 
| 2197 |      return apply_filters( 'get_theme_starter_content', $content, $config ); | 
| 2198 | } | 
| 2199 |  | 
| 2200 | /** | 
| 2201 |  * Registers theme support for a given feature. | 
| 2202 |  * | 
| 2203 |  * Must be called in the theme's functions.php file to work. | 
| 2204 |  * If attached to a hook, it must be {@see 'after_setup_theme'}. | 
| 2205 |  * The {@see 'init'} hook may be too late for some features. | 
| 2206 |  * |