wp_get_object_terms returns array
-
Hi I have added a new column to the WordPress user list page using the following code:
function test_modify_user_table( $column ) { $column['count'] = 'Count'; return $column; } add_filter( 'manage_users_columns', 'test_modify_user_table' ); function test_modify_user_table_row( $val, $column_name, $user_id ) { $user = get_userdata( $user_id ); switch ($column_name) { case 'count' : return $terms = wp_get_object_terms( $user_id, 'visitor_count' ); break; default: } return $return; } add_filter( 'manage_users_custom_column', 'test_modify_user_table_row', 10, 3 );
Using this plugin my custom taxonomy is called visitor_count.
For some reason the output from this code simply returns Array and not the taxonomy as I was hoping.
Is there anything you can spot wrong with my code?
Any assistance would be appreciated.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘wp_get_object_terms returns array’ is closed to new replies.