wordpress / latest / functions / selected.html

selected( mixed $selected, mixed $current = true, bool $echo = true ): string

Outputs the HTML selected attribute.

Description

Compares the first two arguments and if identical marks as selected.

Parameters

$selected mixed Required
One of the values to compare.
$current mixed Optional
The other value to compare if not just true.

Default: true

$echo bool Optional
Whether to echo or just return the string.

Default: true

Return

string HTML attribute or empty string.

Source

File: wp-includes/general-template.php. View all references

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

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
1.0.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/selected