严格按照我在你的代码中看到的:你试图unset
不正确,unset
通过数组键工作,并且您正在使用$term_id
这是一个值。您需要在数组中找到该$term_id
:
function wpfs_save_tax( $term_id ) {
$featured_tax = get_option( \'_featured_tax\' );
if ( empty( $featured_tax ) ) {
$featured_tax = array();
}
if ( isset( $_POST[\'wpfs_tax\'] ) ) {
if ( ! in_array( $term_id, $featured_tax ) ) {
$featured_tax[] = $term_id;
}
} else {
if ( in_array( $term_id, $featured_tax ) ) {
unset( $featured_tax[array_search( $term_id, $featured_tax )] );
}
}
update_option( \'_featured_tax\', $featured_tax );
}