Hi Peter. Thanks for the reply. Truthfully this is not a big issue for me now, as I have it working using get_term_meta()
but I am still curious why rwmb_meta()
does not work.
Below is the code used to create user select meta field on the taxonomy: https://cln.sh/QO9iJ6
array(
'id' => $prefix . 'pm_related_user',
'type' => 'user',
'name' => esc_html__('User Account', 'text-domain'),
'desc' => esc_html__('Select the User Account for this PM.', 'text-domain'),
'class' => 'add-add-new',
'query_args' => array(
'role__in' => 'c_____project_manager',
),
'field_type' => 'select_advanced',
'tab' => 'pm-tab',
),
Here are some samples of the database where the user ID is correctly saving to the meta field pm_related_user
- https://cln.sh/4uPNJ3
Thanks, Peter!
--Brandon