disabled() WordPress Function
The disabled() Wordpress function is used to disable a form field. This is useful for fields that are not needed for a particular form submission. For example, if a field is only needed for certain circumstances, it can be disabled when those circumstances are not present.
disabled( mixed $disabled, mixed $current = true, bool $echo = true ) #
Outputs the HTML disabled attribute.
Description
Compares the first two arguments and if identical marks as disabled.
Parameters
- $disabled
(mixed)(Required)One of the values to compare.
- $current
(mixed)(Optional) The other value to compare if not just true.
Default value: true
- $echo
(bool)(Optional) Whether to echo or just return the string.
Default value: true
Return
(string) HTML attribute or empty string.
Source
File: wp-includes/general-template.php
function disabled( $disabled, $current = true, $echo = true ) { return __checked_selected_helper( $disabled, $current, $echo, 'disabled' ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |