Query wp_usermeta alongside wp_users
This is not a simple answer, so first you will need to include one more filter to allow you to grab both the make the meta_query interact with the main query via an OR instead of a AND, check my sample of code: add_filter(‘user_search_columns’, ‘q166419_user_search_columns’ , 10, 3); function q166419_user_search_columns($search_columns, $search, $this){ if(!in_array(‘display_name’, $search_columns)){ $search_columns[] … Read more