GC_Customize_Control::input_attrs()
最后更新于:2021-11-26 23:34:03
GC_Customize_Control::input_attrs()Render the custom attributes for the control’s input element.
源文件
文件: gc-includes/class-gc-customize-control.php
public function input_attrs() {
foreach ( $this->input_attrs as $attr => $value ) {
echo $attr . '="' . esc_attr( $value ) . '" ';
}
}