wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



add_settings_error › WordPress Function

Od3.0.0
Przestarzałyn/a
add_settings_error ( $setting, $code, $message, $type = 'error' )
Parametry: (4)
  • (string) $setting Slug title of the setting to which this error applies.
    Wymagane: Tak
  • (string) $code Slug-name to identify the error. Used as part of 'id' attribute in HTML output.
    Wymagane: Tak
  • (string) $message The formatted message text to display to the user (will be shown inside styled `<div>` and `<p>` tags).
    Wymagane: Tak
  • (string) $type Optional. Message type, controls HTML class. Possible values include 'error', 'success', 'warning', 'info'. Default 'error'.
    Wymagane: Nie
    Domyślny: 'error'
Zdefiniowane na:
Codex:
Dziennik zmian:
  • 5.3.0

Registers a settings error to be displayed to the user.

Part of the Settings API. Use this to show messages to users about settings validation problems, missing settings or anything else. Settings errors should be added inside the $sanitize_callback function defined in register_setting() for a given setting to give feedback about the submission. By default messages will show immediately after the submission that generated the error. Additional calls to settings_errors() can be used to show errors even when the settings page is first accessed.


Źródło

function add_settings_error( $setting, $code, $message, $type = 'error' ) {
	global $wp_settings_errors;

	$wp_settings_errors[] = array(
		'setting' => $setting,
		'code'    => $code,
		'message' => $message,
		'type'    => $type,
	);
}