wp_readonly() WordPress Function

The wp_readonly() function is used to set whether a WordPress installation is read-only or not. This is useful for sites that are in maintenance mode or for preventing accidental changes to a site.

wp_readonly( mixed $readonly, mixed $current = true, bool $echo = true ) #

Outputs the HTML readonly attribute.


Description

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


Top ↑

Parameters

$readonly

(mixed)(Required)One of the values to compare.

$current

(mixed)(Optional) The other value to compare if not just true.

Default value: true

$echo

(bool)(Optional) Whether to echo or just return the string.

Default value: true


Top ↑

Return

(string) HTML attribute or empty string.


Top ↑

Source

File: wp-includes/general-template.php

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


Top ↑

Changelog

Changelog
VersionDescription
5.9.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More