wp-content/themes/twentyeleven/inc/theme-options.php:226Returns the default options for Twenty Eleven.
array<string,One hook fires while twentyeleven_get_default_theme_options() runs, in this order:
Filters the Twenty Eleven default options.
function twentyeleven_get_default_theme_options() { $default_theme_options = array( 'color_scheme' => 'light', 'link_color' => twentyeleven_get_default_link_color( 'light' ), 'theme_layout' => 'content-sidebar', ); if ( is_rtl() ) { $default_theme_options['theme_layout'] = 'sidebar-content'; } /** * Filters the Twenty Eleven default options. * * @since Twenty Eleven 1.0 * * @param array<string, string> $default_theme_options An array of default theme options. */ return apply_filters( 'twentyeleven_default_theme_options', $default_theme_options );}Introduced in Twenty Eleven 1.0. One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
array to array<string,.verified against sourcesrc/wp-content/themes/twentyeleven/inc/theme-options.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.