submit_button

函式
submit_button ( $text = null, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = null )
引數
  • (string) $text The text of the button (defaults to 'Save Changes')
    Required:
    Default: null
  • (string) $type Optional. The type and CSS class(es) of the button. Core values include 'primary', 'small', and 'large'. Default 'primary'.
    Required:
    Default: 'primary'
  • (string) $name 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.
    Required:
    Default: 'submit'
  • (bool) $wrap True if the output button should be wrapped in a paragraph tag, false otherwise. Defaults to true.
    Required:
    Default: true
  • (array|string) $other_attributes Other attributes that should be output with the button, mapping attributes to their values, such as setting tabindex to 1, etc. These key/value attribute pairs will be output as attribute="value", where attribute is the key. Other attributes can also be provided as a string such as 'tabindex="1"', though the array format is preferred. Default null.
    Required:
    Default: null
相關
  • get_submit_button()
定義位置
相關方法
get_submit_button_media_buttonmedia_buttonslink_submit_meta_boxpost_submit_meta_box
引入
3.1.0
棄用
-

submit_button: 這是一個WordPress的函式,用於生成提交按鈕的HTML。它有兩個引數,$text和$type。引數$text是要顯示在按鈕上的文字。$type引數是按鈕的型別,可以是”主”、”次”、”刪除”或”按鈕”。

呼應一個提交按鈕,並提供文字和適當的類。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function submit_button( $text = null, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = null ) {
echo get_submit_button( $text, $type, $name, $wrap, $other_attributes );
}
function submit_button( $text = null, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = null ) { echo get_submit_button( $text, $type, $name, $wrap, $other_attributes ); }
function submit_button( $text = null, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = null ) {
	echo get_submit_button( $text, $type, $name, $wrap, $other_attributes );
}

常見問題

FAQs
檢視更多 >