checked

函数
checked ( $checked, $current = true, $echo = true )
参数
  • (mixed) $checked One of the values to compare.
    Required:
  • (mixed) $current Optional. The other value to compare if not just true. Default true.
    Required:
    Default: true
  • (bool) $echo Optional. Whether to echo or just return the string. Default true.
    Required:
    Default: true
返回值
  • (string) HTML attribute or empty string.
定义位置
相关方法
wp_checkdatexfn_checkcheck_commentfetch_feedcheck_column
引入
1.0.0
弃用
-

checked: 这个函数生成一个HTML属性,在表单中使用,表示一个复选框是否应该被选中。

输出HTML checked属性。

比较前两个参数,如果相同则标记为选中。

function checked( $checked, $current = true, $echo = true ) {
	return __checked_selected_helper( $checked, $current, $echo, 'checked' );
}

常见问题

FAQs
查看更多 >