acf_hidden_input()ACF 5.0.0

acf_hidden_input

Renders the HTML of a hidden input.

No Hooks.

Returns

String.

Usage

acf_hidden_input( $attrs );
$attrs(array)
The array of attrs.
Default: array()

Changelog

Since 5.0.0 Introduced.

acf_hidden_input() code ACF 6.0.4

function acf_hidden_input( $attrs = array() ) {
	echo acf_get_hidden_input( $attrs );
}