submit_button()
submit_button( string $text = null, string $type = ‘pri…
submit_button( string $text = null, string $type = ‘primary’, string $name = ‘submit’, bool $wrap = true, array|string $other_attributes = null )
回显提交按钮,其中包含提供的文本和适当的类。
Echoes a submit button, with provided text and appropriate class(es).
目录锚点:#说明#参数#源码#笔记
说明(Description)
另请参阅get_submit_button()
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$text | (string) | 按钮的文本(默认为“保存更改”) |
$type | (string) | 按钮的类型和CSS类。核心价值观包括“初级”、“小型”和“大型”。 |
$name | (string) | 提交按钮的HTML名称。默认为“提交”。如果下面的$otheru attributes中没有给定id属性,$name将用作按钮的id。 |
$wrap | (bool) | 如果输出按钮应该包装在段落标记中,则为True,否则为false。默认为true。 |
$other_attributes | (array | string) | 应使用按钮输出的其他属性,将属性映射到其值,例如将tabindex设置为1等。这些键/值属性对将作为attribute=“value”输出,其中attribute是键。其他属性也可以作为字符串提供,如“tabindex=”1“”,但最好使用数组格式。 |
源码(Source)
/** * Echoes a submit button, with provided text and appropriate class(es). * * @since 3.1.0 * * @see get_submit_button() * * @param string $text The text of the button (defaults to 'Save Changes') * @param string $type Optional. The type and CSS class(es) of the button. Core values * include 'primary', 'secondary', 'delete'. Default 'primary' * @param 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. * @param bool $wrap True if the output button should be wrapped in a paragraph tag, * false otherwise. Defaults to true * @param 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. */ function submit_button( $text = null, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = null ) { echo get_submit_button( $text, $type, $name, $wrap, $other_attributes ); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
3.1.0 | wp-admin/includes/template.php | 14 | 14 |
笔记(Notes)
显示辅助按钮
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!