首先,给出你的选择
function your_options() {
$sample_select_options = array(
'0' => array( 'value' => '0', 'label' => __( '', '_s' ) ),
'1 ' => array( 'value' => '1 ', 'label' => __( 'Something1', '_s' ) ),
'2 ' => array( 'value' => '2 ', 'label' => __( 'Something2', '_s' ) );
return apply_filters( 'your_options', $give_me_options );
}
比在您的页面上设置选择选项
<select name="" id="" style="width: 300px;">
<?php
$selected = options['give_me_options'];
$p = '';
$r = '';
foreach ( your_options() as $option ) {
$label = $option['label'];
if ( $selected == $option['label'] ) // Make default first in list
$p .= "\n\t<option style=\"padding-right: 10px;\" selected='selected' value='" . esc_attr( $option['label'] ) . "'>$label</option>";
else
$r .= "\n\t<option style=\"padding-right: 10px;\" value='" . esc_attr( $option['label'] ) . "'>$label</option>";
}
echo $p . $r;
?></select>
最后,对您的页面进行操作,在哪里提供它,当然还有保存功能:)
这只是一个指南,而不是具体的代码。