Created
February 9, 2018 20:49
-
-
Save joseyaz/823ab1a2b03d75d547fccf8a0611af61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function my_relationship_query( $args, $field, $post_id ) { | |
// only show children of the current post being edited | |
$args['post_date'] = 'DESC'; | |
// return | |
return $args; | |
} | |
// filter for every field | |
add_filter('acf/fields/relationship/query', 'my_relationship_query', 10, 3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try setting the params as