我有一个自定义 pod,product_type
在那个 pod 中我有一个名为 的自定义字段label
。我想找到label
与某个字符串匹配的所有 pod。
我一直在尝试这个(以及其他一些变化):
$mypod = pods('product_type', array(
'where' => 'product_type.label LIKE "%'.$someLabelString.'%"',
'limit'=>-1
));
我也尝试将product_type.label
查询的部分更改为t.label
,但无济于事。我收到此错误:
Database Error; SQL: SELECT DISTINCT `t`.* FROM `wp_posts` AS `t` WHERE ( ( `product_type`.`label` LIKE "%hello%" ) AND ( `t`.`post_type` = "product_type" ) AND ( `t`.`post_status` IN ( "publish" ) ) ) ORDER BY `t`.`menu_order`, `t`.`post_title`, `t`.`post_date`; Response: Unknown column 'product_type.label' in 'where clause'