Support

Account

Home Forums Front-end Issues Creating wp archive using custom field filter and PHP7 Reply To: Creating wp archive using custom field filter and PHP7

  • Is $meta_query already defined before this line?

    If no try

    
    $meta_query = array(
      array(
    	'key'		=> $name,
    	'value'		=> $value,
    	'compare'	=> 'IN',
      )
    );