Last active
August 27, 2021 16:26
-
-
Save ashsaraga/786477853662519fefe2c4c6057bc712 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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