这是您在文档中找不到的内容之一,但只能在源代码中找到。源代码只包含此变量的一种用法。这是在bp-xprofile-template.php 第493行。
// First, check to see whether the user-entered value matches
if ( in_array( $allowed_options, (array) $option_values ) ) {
$selected = \' selected="selected"\';
}
// Then, if the user has not provided a value, check for defaults
if ( !is_array( $original_option_values ) && empty( $option_values ) && $options[$k]->is_default_option ) {
$selected = \' selected="selected"\';
}
如您所见,它用于在用户尚未提供值的情况下预先选择选项。