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