Support

Account

Home Forums Front-end Issues How to search ACF Post Object Type Field Reply To: How to search ACF Post Object Type Field

  • There isn’t any way to search a post object field by text that is located in the related post object. The post object field stores the post ID, or an array of post IDS for the related posts.

    If you want to be able to search content of the related post and return the post it is related to, then you will also need to store that data in custom fields of the posts that you want returned. That probably sounds confusing, because it is.

    Let’s say for example that you want to search all of the post titles of posts in the post object field.

    The first thing that you need to do is to store that information in the same post with the post object field.

    Please read the following article. This article deals with making a repeater field queryable, however, the same principles apply. You need to get the titles of the posts and store them in a way that they become usable in WP_Query(). https://acfextras.com/dont-query-repeaters/