我在用户注册时创建了自定义帖子。还创建了一个自定义分类法(“ connection1”)。我需要将此帖子添加到该分类法中。
帖子添加得很好。分类法也没有问题。但是由于某种原因,未将帖子添加到分类法中
$user = new WP_User( $user_id );
$user->set_role( 'participation' );
$my_cptpost_args = array(
'post_title' => 'user-'.$user_id,
'slug' => $user_id,
'post_status' => 'publish',
'post_type' => 'profile'
);
$cpt_id = wp_insert_post( $my_cptpost_args, $wp_error);
wp_insert_term($user_id,'connection1');
$term_id = term_exists( $user_id, 'connection1' );
wp_set_post_terms($cpt_id , array( $term_id ), 'connection1' );