Definition:
function twentyeleven_theme_options_render_page() {}
Returns the options array for Twenty Eleven.
Source code
function twentyeleven_theme_options_render_page() { ?> <div class="wrap"> <?php screen_icon(); ?> <h2><?php printf( __( '%s Theme Options', 'twentyeleven' ), get_current_theme() ); ?></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 }
17206
No comments yet... Be the first to leave a reply!