<?php
function my_address_function(){
if(isset($_POST[\'special_content\'])){
update_option(\'special_content\', $_POST[\'special_content\']);
}
?>
<div class=\'wrap\'>
<h2>My Super Admin Page</h2>
<form method=\'post\'>
<?php
$content = get_option(\'special_content\');
wp_editor( $content, \'special_content\', $settings = array(\'textarea_rows\'=> \'10\') );
submit_button(\'Save\', \'primary\');
?>
</form>
</div><!-- .wrap -->
<?php
}
?>