settings_fields( string $option_group )

Outputs nonce, action, and option_page fields for a settings page.

Parameters

$option_groupstringrequired
A settings group name. This should match the group name used in register_setting() .
More Arguments from register_setting( … $option_group )A settings group name. Should correspond to an allowed option key name.
Default allowed option key names include 'general', 'discussion', 'media', 'reading', 'writing', and 'options'.

Source

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" );
}

Changelog

VersionDescription
2.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.