acf_text_input()
acf_text_input
Renders the HTML of a text input.
Хуков нет.
Возвращает
string.
Использование
acf_text_input( $attrs );
- $attrs(массив)
- The array of attrs.
По умолчанию:array()
Список изменений
| С версии 5.0.0 | Введена. |
Код acf_text_input() acf text input ACF 6.8.8
function acf_text_input( $attrs = array() ) {
echo acf_get_text_input( $attrs ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- escaped by input generation function.
}