Support

Account

Home Forums Front-end Issues Create a filter by repeater sub field Reply To: Create a filter by repeater sub field

  • Finally I looks that its working like:

    $args = array(
      'numberposts' => -1,
      'post_type'   => 'noticias',
      'meta_query'  => array(
    
        array(
          'key'   => 'cobertura_%_pais',
          'compare' => '=',
          'value'   => 'a:1:{i:0;s:4:"'.$pais.'";}',
        )
    
      )
    );

    Is that ok?