disabled( mixed $disabled, mixed $current = true, bool $display = true ): string

Outputs the HTML disabled attribute.


Description

Compares the first two arguments and if identical marks as disabled.


Top ↑

Parameters

$disabled mixed Required
One of the values to compare.
$current mixed Optional
The other value to compare if not just true.

Default: true

$display bool Optional
Whether to echo or just return the string.

Default: true


Top ↑

Return

string HTML attribute or empty string.


Top ↑

Source

File: wp-includes/general-template.php. View all references

function disabled( $disabled, $current = true, $display = true ) {
	return __checked_selected_helper( $disabled, $current, $display, 'disabled' );
}


Top ↑

Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.