Support

Account

Home Forums General Issues show acf if certain value Reply To: show acf if certain value

  • Shouldn’t it rather be

    
      $ad_args = array(
        'post_type'       => '3d_drucker',
        'orderby'         => 'rand',
        'meta_query'      => array(
          array(
            'key'     => 'printer_type',
            'value'   => 'SLS',
          )
        )
      );
    

    (i. e. different key)
    Check the field name/slug that you want to query.