Returns a submit button, with provided text and appropriate class, copied from WP Core for use on the frontend
public static submit_button ( string $text = null, string $type = 'primary large', string $name = 'submit', boolean $wrap = true, array | string $other_attributes = null ) | ||
$text | string | The text of the button (defaults to 'Save Changes') |
$type | string | The type of button. One of: primary, secondary, delete |
$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. |
$wrap | boolean | True if the output button should be wrapped in a paragraph tag, false otherwise. Defaults to 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. |