// field definition
Container::make( 'post_meta', __( 'Post Options', 'crb' ) )
->where( 'post_type', '=', 'post' )
->add_fields( array(
Field::make( 'text', 'crb_text', 'Text' ),
) );
// query
$query = new WP_Query( array(
'post_type'=>'post',
'meta_query'=>array(
array(
'key' => 'crb_text',
'value' => 'hello_world',
),
),
) );