我需要将一个高级自定义字段值(类别编号)从页面添加到query_posts数组。这有可能吗?
在单个页面上,我正在尝试显示类别中的帖子,该数字是此自定义字段的值。
理想,当然还有非功能性案例:
query_posts(array('category__and'=>array( the_field("category"); ,99), 'posts_per_page'=>6));
答案 0 :(得分:1)
the_field()
显示元值。您需要使用get_field()
(其中返回元值):
query_posts(array('category__and'=>array( get_field("category"); ,99), 'posts_per_page'=>6));
在某些不相关的新闻中,你应该考虑avoiding the use of query_posts
。