checked() – Outputs the html checked attribute.
You appear to be a bot. Output may be restricted
Description
Outputs the HTML checked attribute.
Compares the first two arguments and if identical marks as checked.
Usage
$string = checked( $checked, $current, $echo );
Parameters
- $checked
- ( mixed ) required – One of the values to compare.
- $current
- ( mixed ) optional default: 1 – Optional. The other value to compare if not just true. Default true.
- $echo
- ( bool ) optional default: 1 – Optional. Whether to echo or just return the string. Default true.
Returns
string HTML attribute or empty string.
Source
File name: wordpress/wp-includes/general-template.php
Lines:
1 to 3 of 3
function checked( $checked, $current = true, $echo = true ) { return __checked_selected_helper( $checked, $current, $echo, 'checked' ); }