• The second parameter from function register_taxonomy() can also be an array. So I modified the script on line 55:

    // Only modify user taxonomies, everything else can stay as is
    if(is_array($object)) {
        if(!in_array('user', $object)) return;
    } else {
        if($object != 'user') return;
    }
  • The topic ‘Nice plugin but…’ is closed to new replies.