如何通过wordpress自定义字段在自定义帖子类型中添加自定义过滤器
答案 0 :(得分:0)
高级自定义字段插件在https://www.advancedcustomfields.com处有一个非常好的文档。按自定义字段查询here。
简而言之:
对于自定义字段,您可以使用meta_key
和meta_value
。
$posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'post',
'meta_key' => 'color',
'meta_value' => 'red'
));
如果您想按自定义字段进行排序,请说出名为start_date
的日期字段,请在'orderby'='meta_value'
中指定get_posts
并指定密钥类型,此处为'meta_type'='DATETIME'
(见here for more info):
// query events order
$posts = get_posts(array(
'posts_per_page' => -1,
'post_type' => 'event',
'order' => 'ASC',
'orderby' => 'meta_value',
'meta_key' => 'start_date',
'meta_type' => 'DATETIME'
));