我想使用称为“ a_type”的自定义分类法创建自定义注册配置文件表单。 用户将不得不在带有无线电输入的术语之间进行选择。
<div class="col-sm-12 dropdown-a_type">
<label><?php _e( "Domaine de compétence", ET_DOMAIN ) ?></label><br>
<?php
/* On récupère les termes de la taxonomie */
$terms = get_terms( array(
'taxonomy' => 'a_type',
'hide_empty' => false,
) );
if ( !empty( $terms ) ) {
foreach ( $terms as $term ) { ?>
<input type="radio" name="<?php echo $term->slug ?>" id="<?php echo $term->slug ?>" value="<?php echo $term->slug ?>"><?php echo $term->name; ?>
<?php
$mytermid = $term->ID;
wp_set_object_terms( $user_id, $mytermid, 'a_type' );
}
}
?>
</div>
当我尝试回显$term->ID
时,什么都没有发出
这可能是我无法将输入保存到用户个人资料的原因。