admin管理员组文章数量:1130349
As described in ACF documentation, here is the way to find all posts where a custom field called ‘color’ has a value of ‘red’.
$posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'post',
'meta_key' => 'color',
'meta_value' => 'red'
));
But in my case, I need to find all posts where the ID of an object post custom field has a certain ID.
How should I proceed to handle meta_value as an object, and targeting its ID key?
As described in ACF documentation, here is the way to find all posts where a custom field called ‘color’ has a value of ‘red’.
$posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'post',
'meta_key' => 'color',
'meta_value' => 'red'
));
But in my case, I need to find all posts where the ID of an object post custom field has a certain ID.
How should I proceed to handle meta_value as an object, and targeting its ID key?
Share Improve this question asked Nov 18, 2018 at 21:26 QuentinQuentin 158 bronze badges1 Answer
Reset to default 1If you use Post Object field type, then it is stored as ID in custom field. So this should do the trick:
$posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'post',
'meta_key' => '<FIELD_NAME>',
'meta_value' => <POST_ID>
));
PS. You should use 'posts_per_page' instead of 'numberposts' (which is deprecated).
As described in ACF documentation, here is the way to find all posts where a custom field called ‘color’ has a value of ‘red’.
$posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'post',
'meta_key' => 'color',
'meta_value' => 'red'
));
But in my case, I need to find all posts where the ID of an object post custom field has a certain ID.
How should I proceed to handle meta_value as an object, and targeting its ID key?
As described in ACF documentation, here is the way to find all posts where a custom field called ‘color’ has a value of ‘red’.
$posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'post',
'meta_key' => 'color',
'meta_value' => 'red'
));
But in my case, I need to find all posts where the ID of an object post custom field has a certain ID.
How should I proceed to handle meta_value as an object, and targeting its ID key?
Share Improve this question asked Nov 18, 2018 at 21:26 QuentinQuentin 158 bronze badges1 Answer
Reset to default 1If you use Post Object field type, then it is stored as ID in custom field. So this should do the trick:
$posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'post',
'meta_key' => '<FIELD_NAME>',
'meta_value' => <POST_ID>
));
PS. You should use 'posts_per_page' instead of 'numberposts' (which is deprecated).
本文标签: phpQuery posts by custom fields (object post)
版权声明:本文标题:php - Query posts by custom fields (object post) 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749170923a2326988.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论