Support

Account

Home Forums Front-end Issues meta_query for a Group field sub-field Reply To: meta_query for a Group field sub-field

  • This doesn’t work. As of WP 5.9.3 and the latest ACF on Apr 10, 2022, this code doesn’t work:

    
    // WP_Query args fragment..
    'post_type'  => 'page'
    ,'meta_query' => array(
            'relation' => 'OR',
            ,array(
                'key' => 'page_sections_section_content',
                'value' => "$SEARCH",
                'compare' => 'LIKE',
            ),
            ...
      );
    
    

    My repeater rows: page_sections
    My repeater rows: section_content

    Any ideas?