WPDev.one
Core Function
View Source on Trac ↗

submit_button()

submit_button( mixed $text = '', mixed $type = 'primary', mixed $name = 'submit', mixed $wrap = true, mixed $other_attributes = '' )

Echoes a submit button, with provided text and appropriate class(es).

Parameters 4 required

Name / Type Description
$text
string

Optional. The text of the button. Defaults to 'Save Changes'.

string

$type Optional. The type and CSS class(es) of the button. Core values include 'primary', 'small', and 'large'. Default 'primary'.

Required
string

$name Optional. The HTML name of the submit button. If no `id` attribute is given in the `$other_attributes` parameter, `$name` will be used as the button's `id`. Default 'submit'.

Required
bool

$wrap Optional. True if the output button should be wrapped in a paragraph tag, false otherwise. Default true.

Required
mixed

(array | string) $other_attributes Optional. Other attributes that should be output with the button, mapping attributes to their values, e.g. `array( 'id' => 'search-submit' )`. These key/value attribute pairs will be output as `attribute="value"`, where attribute is the key. Attributes can also be provided as a string, e.g. `id="search-submit"`, though the array format is generally preferred. Default empty string.

Required

Return Value

(void)
No return value description available.

Function Information

Since Version
3.1.0
Source File
wp-admin/includes/template.php
Advertisement