我有以下内容,它与meta_query一起使用,因为它传递自定义元属性,但我很难让它只搜索自定义帖子类型的标题。
<?php
$args = array(
'post_type' => 'team',
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'title',
'compare' => 'LIKE',
'value' => $teamName
)
)
);
?>
答案 0 :(得分:1)
这应该可以正常工作,使用WP Query的搜索参数,也可以搜索标题:
<?php
$args = array(
'post_type' => 'team',
's' => $teamName,
);
?>