Skip to content

Instantly share code, notes, and snippets.

@ashsaraga
Last active August 27, 2021 16:26
Show Gist options
  • Save ashsaraga/786477853662519fefe2c4c6057bc712 to your computer and use it in GitHub Desktop.
Save ashsaraga/786477853662519fefe2c4c6057bc712 to your computer and use it in GitHub Desktop.
<?php
$meta_value = esc_html( get_the_title() ); // set $meta_value to query for
$args = array(
'meta_query' => array(
'relation' => 'OR', // retrieve post if either query is true
'meta_subquery1' => array(
'key' => 'meta_key1',
'value' => $meta_value,
'compare' => '='
),
'meta_subquery2' => array(
'key' => 'meta_key2',
'value' => $meta_value,
'compare' => '='
),
),
'orderby' => 'meta_key'
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment