WordPress函数文档date_i18n()
用在表单中的输入框中,用于比较两个给定的值 描述 用在表单中的输入框中。用于比较两个给定的值(比如,已经保存到…
用在表单中的输入框中,用于比较两个给定的值
描述
用在表单中的输入框中。用于比较两个给定的值(比如,已经保存到数据库的值和表单中的值),如果两个值相同,添加 disabled
属性到输入框中。
用法
<input type="radio" name="attachments"
value="<?php echo esc_attr( $value ); ?>" <?php disabled( $value1, $value2, false ); ?> />
参数
$disabled
(mixed) (必填) 用于比较的值,已经在数据库中保存的。
默认值: None
$current
(mixed) (可选) 另外的值(如果不为 true),当前选项的值。
默认值: true
$echo
(boolean) (可选) 返回结果是输出还是返回字符串。
默认值: true
返回值
(string)
HTML 属性 (disabled=’disabled’) 或者空的字符串。
源文件
disabled() 函数的代码位于 wp-includes/general-template.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Outputs the html disabled attribute.
*
* Compares the first two arguments and if identical marks as disabled
*
* @since 3.0.0
*
* @param mixed $disabled One of the values to compare
* @param mixed $current (true) The other value to compare if not just true
* @param bool $echo Whether to echo or just return the string
* @return string html attribute or empty string
*/
function disabled( $disabled, $current = true, $echo = true ) {
return __checked_selected_helper( $disabled, $current, $echo, ‘disabled’ );
}
|
- 原文:http://codex.wordpress.org/Function_Reference/disabled
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!