嘿我正在尝试创建一个类似于Alecaddd本教程的选择选项,我一直关注Alecadd Gibhub。我尝试使用以下代码输出选择选项,它会显示但不保存所选选项。
function sa_comments_callback(){
$options = get_option( 'postpage_comments' );
$comments = array( 'Post', 'Page', 'Both', 'None' );
$output = '<select name="">';
foreach( $comments as $comment ){
$output .= '<option id="' . $comment . '" value="' . $comment . '"' . selected( @$options[$comment] ) . '">' . $comment . '</option>';
}
$output .= '</select>';
echo $output;
}
任何帮助都将不胜感激。