wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



submit_button › WordPress Function

Desde3.1.0
Obsoleton/a
submit_button ( $text = '', $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = '' )
Parâmetros: (5)
  • (string) $text Optional. The text of the button. Defaults to 'Save Changes'.
    Required: No
    Padrão: (empty)
  • (string) $type Optional. The type and CSS class(es) of the button. Core values include 'primary', 'small', and 'large'. Default 'primary'.
    Required: No
    Padrão: 'primary'
  • (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: No
    Padrão: 'submit'
  • (bool) $wrap Optional. True if the output button should be wrapped in a paragraph tag, false otherwise. Default true.
    Required: No
    Padrão: true
  • (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: No
    Padrão: (empty)
Ver:
Definido em:
Codex:

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



Fonte

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