Answer the question
In order to leave comments, you need to log in
Select posts by additional taxonomy field?
There are posts on the site that have a custom taxonomy Tax (for example)
The taxonomy Tax itself has additional fields:
Answer the question
In order to leave comments, you need to log in
You can simply compose the query as needed: https://carbonfields.net/docs/advanced-topics-quer...
All posts containing the crb_text field with the value 'hello world':
// 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',
),
),
) );
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question