Tell us what you are trying to do?
Hi team Toolset!
i want to have two text searches working in one view (a table) , one to search in posts(Projects) titles and second for post types (Agencies) titles hidden link. In my table view i have post titles and agencies titles. hidden link & hidden link .
Text search for post title is working fine which pulls out all the posts containing searched phrase.
i want the text search working same way for agencies titles to pull out posts containing searched phrase. lets i search southern California in agency title and relevant post row comesup hidden link
Is there any documentation that you are following?
Views are a user-friendly wrapper for the WordPress WP_Query class that retrieves posts from the database, and with that it is only possible to query posts by properties of the posts being queried.
In your example your View is querying Projects, so you can only filter the query by properties of Projects, meaning you cannot filter the results by Agencies. (Your example is a special case inasmuch as it is a text search, but the underlying principle is the same.)
To search for Agencies you need a View that queries Agencies.
The underlying queries can be modified so that you can filter one type of posts by properties of another related type of posts, but we haven't added that functionality yet.