acf_get_hidden_input()
acf_get_hidden_input
Returns the HTML of a hidden input.
Хуков нет.
Возвращает
Строку.
Использование
acf_get_hidden_input( $attrs );
- $attrs(массив)
- The array of attrs.
По умолчанию:array()
Список изменений
| С версии 5.0.0 | Введена. |
Код acf_get_hidden_input() acf get hidden input ACF 6.4.2
function acf_get_hidden_input( $attrs = array() ) {
return sprintf( '<input type="hidden" %s/>', acf_esc_attrs( $attrs ) );
}