wp-content/themes/twentyeleven/inc/theme-options.php:245Returns the default link color for Twenty Eleven, based on color scheme.
$color_schemestringoptionalnullstringfunction twentyeleven_get_default_link_color( $color_scheme = null ) { if ( null === $color_scheme ) { $options = twentyeleven_get_theme_options(); $color_scheme = $options['color_scheme']; } $color_schemes = twentyeleven_color_schemes(); if ( ! isset( $color_schemes[ $color_scheme ] ) ) { return false; } return $color_schemes[ $color_scheme ]['default_link_color'];}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.
string to string|false.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.