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



wp_readonly › WordPress Function

Seit5.9.0
Veraltetn/v
wp_readonly ( $readonly_value, $current = true, $display = true )
Parameter: (3)
  • (mixed) $readonly_value 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 readonly attribute.

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


Ähnliche Funktionen: readonly, wp_head, wp_cron, wp_rand, _wp_cron

Quellcode

function wp_readonly( $readonly_value, $current = true, $display = true ) {
	return __checked_selected_helper( $readonly_value, $current, $display, 'readonly' );
}