1$meta_query_args = array(
2 'relation' => 'OR', // Optional, defaults to "AND"
3 array(
4 'key' => '_my_custom_key',
5 'value' => 'Value I am looking for',
6 'compare' => '='
7 )
8);
9$meta_query = new WP_Meta_Query( $meta_query_args );
10