Codex tools: Log in / create account
Contents |
Settings Sections are the groups of settings you see on WordPress settings pages with a shared heading. In your plugin you can add new sections to existing settings pages rather than creating a whole new page. This makes your plugin simpler to maintain and creates less new pages for users to learn. You just tell them to change your setting on the relevant existing page.
<?php add_settings_section($id, $title, $callback, $page); ?>
Since: 2.7.0
add_settings_field() is located in wp-admin/includes/template.php.
Settings API: register_setting, unregister_setting, add_settings_field, add_settings_section