标签: wordpress advanced-custom-fields
我已经使用post对象的字段类型创建了一个高级自定义字段。我以某种方式加载列表中的所有数据,但它显示的数据是自动草稿。如何输出正确的数据?感谢
答案 0 :(得分:1)
function my_relationship_filter( $args, $field, $post_id ) { $args['post_status'] = array('publish'); return $args; } add_filter('acf/fields/relationship/query', 'my_relationship_filter', 10, 3);
感谢好问题。对我来说有用这个代码。