wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



settings_fields › WordPress Function

Seit2.7.0
Veraltetn/v
settings_fields ( $option_group )
Parameter:
  • (string) $option_group A settings group name. This should match the group name used in register_setting().
    Erforderlich: Ja
Definiert in:
Codex:

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



Quellcode

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