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 – (true) The other value to compare if not just true
- $echo
- ( bool ) optional default: 1 – Whether to echo or just return the string
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' ); }