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

February 12, 2011 


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