关于,
我想我找到了这个话题。
为了在自定义分类法中创建基于用户的术语,我创建了一个附加到术语(新WP 4.4功能)“author”的元,其中包含登录的用户ID:
add_term_meta($term_id,\'author\',get_current_user_id());
然后检索创建术语的用户:
$author = get_the_author_meta( \'user_nicename\', intval(get_term_meta($term_id,\'author\')) );
我认为这是最好的方法。
干杯