settings_fields

Definition:
function settings_fields($option_group) {}

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

Parameters

  • string $option_group: A settings group name. This should match the group name used in register_setting().

Source code

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

}

2835

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: