wp_readonly( mixed $readonly_value, mixed $current = true, bool $display = true )

Outputs the HTML readonly attribute.


Description

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


Parameters

$readonly_value

(Required) One of the values to compare.

$current

(Optional) The other value to compare if not just true.<br>

Default value: true

$display

(Optional) Whether to echo or just return the string.<br>

Default value: true


Return

(string) HTML attribute or empty string.


Source

File: wp-includes/general-template.php

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


Changelog

Changelog
Version Description
5.9.0 Introduced.