selected() WP 1.0
Outputs the html selected attribute.
Compares the first two arguments and if identical marks as selected
Works based on: __checked_selected_helper()
No Hooks.
Return
String. HTML attribute or empty string
Usage
selected( $selected, $current, $echo );
- $selected(mixed) (required)
- One of the values to compare
- $current(mixed)
- (true) The other value to compare if not just true
Default: true - $echo(true/false)
- Whether to echo or just return the string
Default: true
Changelog
Since 1.0.0 | Introduced. |
Code of selected() selected WP 5.6
function selected( $selected, $current = true, $echo = true ) {
return __checked_selected_helper( $selected, $current, $echo, 'selected' );
}