admin管理员组文章数量:1415119
Hey I am using ACF in media library and want to sort media by meta key (that is actually created by ACF). BUT it is not working.
Here is the code:
$gallery_imgs = get_posts(array(
'post_type' => 'attachment',
'posts_per_page' => -1,
'post_mime_type' => 'image',
'post_status' => 'inherit',
'meta_key' => 'serial_no',
'orderby' => 'meta_value', //or 'meta_value_num'
'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'gallery_ct_artist_cat',
'field' => 'term_id',
'terms' => $artist_id
)
)
));
for reference please visit this link.http://185.94.230.80/~wwwdevatta/artist-collection/294/
Hey I am using ACF in media library and want to sort media by meta key (that is actually created by ACF). BUT it is not working.
Here is the code:
$gallery_imgs = get_posts(array(
'post_type' => 'attachment',
'posts_per_page' => -1,
'post_mime_type' => 'image',
'post_status' => 'inherit',
'meta_key' => 'serial_no',
'orderby' => 'meta_value', //or 'meta_value_num'
'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'gallery_ct_artist_cat',
'field' => 'term_id',
'terms' => $artist_id
)
)
));
for reference please visit this link.http://185.94.230.80/~wwwdevatta/artist-collection/294/
Share Improve this question edited Aug 22, 2019 at 19:08 nmr 4,5672 gold badges17 silver badges25 bronze badges asked Aug 22, 2019 at 13:18 Atta Ur Rehman AkbarAtta Ur Rehman Akbar 214 bronze badges1 Answer
Reset to default 1Use meta_value_num
to order by numeric values
本文标签: pluginsOrder posts by meta key ( Using ACF )
版权声明:本文标题:plugins - Order posts by meta key ( Using ACF ) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745225359a2648581.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论