Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 981 Bytes

views.md

File metadata and controls

47 lines (29 loc) · 981 Bytes

Views

WP_Form_View_Button

Displays a <button> element. The type attribute is determined by the element displayed.

WP_Form_View_Checkboxes

Displays a group of checkboxes.

WP_Form_View_Form

Displays an entire form, including the opening/closing <form> tags and any elements contained in the form.

WP_Form_View_Input

Displays an <input> element. The type attribute is determined by the element displayed.

WP_Form_View_PartialForm

Displays a form's children without the enclosing <form> tag.

WP_Form_View_Radios

Displays a group of radio buttons.

WP_Form_View_Select

Displays a <select> element.

WP_Form_View_Textarea

Displays a <textarea> element.

WP_Form_View_WPEditor

Displays WordPress's built-in rich text editor.