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



wp_readonly › WordPress Function

Od5.9.0
Przestarzałyn/a
wp_readonly ( $readonly_value, $current = true, $display = true )
Parametry: (3)
  • (mixed) $readonly_value One of the values to compare.
    Wymagane: Tak
  • (mixed) $current Optional. The other value to compare if not just true. Default true.
    Wymagane: Nie
    Domyślny: true
  • (bool) $display Optional. Whether to echo or just return the string. Default true.
    Wymagane: Nie
    Domyślny: true
Powrót:
  • (string) HTML attribute or empty string.
Zdefiniowane na:
Codex:

Outputs the HTML readonly attribute.

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


Powiązane Funkcje: readonly, wp_head, wp_cron, wp_rand, _wp_cron

Źródło

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