Uses
Uses | Description |
---|---|
wp-includes/formatting.php: esc_attr() | Escaping for HTML attributes. |
wp-includes/functions.php: wp_nonce_field() | Retrieve or display nonce hidden field for forms. |
Output nonce, action, and option_page fields for a settings page.
(string) (Required) A settings group name. This should match the group name used in register_setting().
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" ); }
Version | Description |
---|---|
2.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/settings_fields