首页 WordPress函数大全 get_submit_button()

get_submit_button()

2020-05-01 / 3634阅 / 悠然

如何你看完本文还不知道如何使用该函数,可以联系我定制视频教程,50元/个函数,学不会全额退款

get_submit_button( string $text = '', string $type = 'primary large', string $name = 'submit', bool $wrap = true, array|string $other_attributes = '' )

Returns a submit button, with provided text and appropriate class

描述

参数

$text

(string)
(Optional)
The text of the button. Default 'Save Changes'.

Default value: ''

$type

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

Default value: 'primary large'

$name

(string)
(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 value: 'submit'

$wrap

(bool)
(Optional)
True if the output button should be wrapped in a paragraph tag, false otherwise.

Default value: true

$other_attributes

(array|string)
(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 value: ''

返回

(string) Submit button HTML.

大家谈论
    我的见解