Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_theme_starter_content

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
2168
2169      /**
2170       * Filters the expanded array of starter content.
2171       *
2172       * @since 4.7.0
2173       *
2174       * @param array $content Array of starter content.
2175       * @param array $config  Array of theme-specific starter content configuration.
2176       */
2177      return apply_filters( 'get_theme_starter_content', $content, $config );
2178 }
2179
2180 /**
2181  * Registers theme support for a given feature.
2182  *
2183  * Must be called in the theme's functions.php file to work.
2184  * If attached to a hook, it must be {@see 'after_setup_theme'}.
2185  * The {@see 'init'} hook may be too late for some features.
2186  *