We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When we set the search_columns to user_url in the WP_User_Query. The search result returns all the user whose website value is set.
search_columns
user_url
WP_User_Query
Steps to Reproduce
https://elasticpress.io
https://example.com
add_action( 'init', function() : void { $user_query = new \WP_User_Query( [ 'ep_integrate' => true, 'search' => 'https://elasticpress.io', 'search_columns' => [ 'user_url' ], ] ); var_dump( $user_query->results ); } );
Expected behavior
It should only returns the user who's website field is https://elasticpress.io
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When we set the
search_columns
touser_url
in theWP_User_Query
. The search result returns all the user whose website value is set.Steps to Reproduce
https://elasticpress.io
and for other 2 users set field tohttps://example.com
Expected behavior
It should only returns the user who's website field is
https://elasticpress.io
The text was updated successfully, but these errors were encountered: