我有三个不同的参数要搜索,第一个是自定义帖子类型的帖子标题,第二个是分类术语,第三个也是帖子类型,我能够搜索其中三个是否被选中,但如何搜索相关如果仅选择其中两个或仅选择其中一个,则记录?
$args = array(
'post_type' => 'course',
'post_status' => 'publish',
'tax_query' => array(
array(
'taxonomy' => 'course-category',
'terms' => $cs_course_cate,
'field' => 'term_id',
)
),
'meta_query' => array(
array(
'key' => 'cs_course_campus_id',
'value' => $cs_campus,
'compare' => 'LIKE',
),
),
);
答案 0 :(得分:0)
试试这段代码。
<Utils:CustomTextBox Grid.Row="0"
Margin="0,10"
KeyboardViewModel="{Binding Path=MainWindowViewModel.KeyboardViewModel}"
HintText="Patient"
x:Name="Patient"/>