wp-content/themes/twentyeleven/inc/theme-options.php:354Renders the theme options page for Twenty Eleven.
function twentyeleven_theme_options_render_page() { $theme_name = function_exists( 'wp_get_theme' ) ? wp_get_theme()->display( 'Name' ) : get_option( 'current_theme' ); ?> <div class="wrap"> <h2> <?php /* translators: %s: Theme name. */ printf( __( '%s Theme Options', 'twentyeleven' ), $theme_name ); ?> </h2> <?php settings_errors(); ?> <form method="post" action="options.php"> <?php settings_fields( 'twentyeleven_options' ); do_settings_sections( 'theme_options' ); submit_button(); ?> </form> </div> <?php}Introduced in Twenty Eleven 1.2. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/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.