// Add a menu for our option page add_action('admin_menu', 'sunburst_theme_add_page'); function sunburst_theme_add_page() { add_options_page( 'My Plugin', 'My Plugin', 'manage_options', 'sunburst_theme', 'sunburst_theme_option_page' ); } // Draw the option page function sunburst_theme_option_page() { ?>

My plugin

Enter your settings here.

'; } function sunburst_theme_checkbox_input() { $options = get_option( 'sunburst_theme_options' ); ?> />