get_submit_button
get_submit_button ( $text = '', $type = 'primary large', $name = 'submit', $wrap = true, $other_attributes = '' )
Parameters:- (string) text Optional. The text of the button. Default 'Save Changes'.
- (string) type Optional. The type and CSS class(es) of the button. Core values include 'primary', 'small', and 'large'. Default 'primary large'.
- (string) name Optional. The HTML name of the submit button. Defaults to "submit". If no id attribute is given in $other_attributes below, `$name` will be used as the button's id. Default 'submit'.
- (bool) wrap Optional. True if the output button should be wrapped in a paragraph tag, false otherwise. Default true.
- (array|string) other_attributes Optional. Other attributes that should be output with the button, mapping attributes to their values, such as `array( 'tabindex' => '1' )`. These attributes will be output as `attribute="value"`, such as `tabindex="1"`. Other attributes can also be provided as a string such as `tabindex="1"`, though the array format is typically cleaner. Default empty.
Returns:- (string) Submit button HTML.
Defined at: - Introduced in WordPress: 3.1.0
- Deprecated in WordPress: —
Description
Returns a submit button, with provided text and appropriate class.