wpseek.com
A WordPress-centric search engine for devs and theme authors



settings_fields › WordPress Function

Since2.7.0
Deprecatedn/a
settings_fields ( $option_group )
Parameters:
  • (string) $option_group A settings group name. This should match the group name used in register_setting().
    Required: Yes
Defined at:
Codex:

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



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