Echos a submit button, with provided text and appropriate class

Signature

submit_button( $text = null, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = null )
text
 (string) The text of the button (defaults to 'Save Changes')
Default: null
type
 (string) The type of button. One of: primary, secondary, delete
Default: 'primary'
name
 (string) 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'
wrap
 (boolean) True if the output button should be wrapped in a paragraph tag, false otherwise. Defaults to true
Default: true
other_attributes
 (array|string) 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". Defaults to no other attributes. Other attributes can also be provided as a string such as 'tabindex="1"', though the array format is typically cleaner.
Default: null

Return

(void)

Source

function submit_button( $text = null, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = null ) {
	echo get_submit_button( $text, $type, $name, $wrap, $other_attributes );
}
WP Trac GitHub Bitbucket

Link here