有一种简单的方法可以将用户名添加为特定分类法的术语。您需要使用“user_register“钩子。所以示例代码如下
add_action( \'user_register\', \'add_term_to_taxonomie\', 10, 1 );
function myplugin_registration_save( $user_id ) {
if ( isset( $_POST[\'user_login\'] ) ){
wp_insert_term(
$_POST[\'user_login\'], // the term
\'product\', // the taxonomy
);
}
}
尝试该代码,并用您的分类名称替换“product”。然后让我知道结果。谢谢