Skip to content

Instantly share code, notes, and snippets.

@kstover
Created May 29, 2013 13:23
Show Gist options
  • Save kstover/5670223 to your computer and use it in GitHub Desktop.
Save kstover/5670223 to your computer and use it in GitHub Desktop.
$args = array(
'post_type' => 'attachment',
'meta_query' => array(
array(
'key' => 'ninja_forms_field_id',
'value' => $field_id,
'type' => 'numeric',
'compare' => '='
),
array(
'key' => 'ninja_forms_file_key',
'value' => $key,
'compare' => '='
)
)
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment