settings_fields( string $option_group )
Output nonce, action, and option_page fields for a settings page.
Description Description
Parameters Parameters
- $option_group
-
(string) (Required) A settings group name. This should match the group name used in register_setting().
Source Source
File: wp-admin/includes/plugin.php
function settings_fields( $option_group ) { echo "<input type='hidden' name='option_page' value='" . esc_attr( $option_group ) . "' />"; echo '<input type="hidden" name="action" value="update" />'; wp_nonce_field( "$option_group-options" ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Example