selected( mixed $selected, mixed $current = true, bool $display = true )
Outputs the HTML selected attribute.
Description
Compares the first two arguments and if identical marks as selected.
Parameters
- $selected
-
(Required) One of the values to compare.
- $current
-
(Optional) The other value to compare if not just true.<br>
Default value: true
- $display
-
(Optional) Whether to echo or just return the string.<br>
Default value: true
Return
(string) HTML attribute or empty string.
Source
File: wp-includes/general-template.php
function selected( $selected, $current = true, $echo = true ) {
return __checked_selected_helper( $selected, $current, $echo, 'selected' );
}
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |