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



disabled › WordPress Function

Seit3.0.0
Veraltetn/v
disabled ( $disabled, $current = true, $display = true )
Parameter: (3)
  • (mixed) $disabled One of the values to compare.
    Erforderlich: Ja
  • (mixed) $current Optional. The other value to compare if not just true. Default true.
    Erforderlich: Nein
    Standard: true
  • (bool) $display Optional. Whether to echo or just return the string. Default true.
    Erforderlich: Nein
    Standard: true
Gibt zurück:
  • (string) HTML attribute or empty string.
Definiert in:
Codex:

Outputs the HTML disabled attribute.

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


Quellcode

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