Can I change the posts order of Post Object Field without having to edit /core/fields/post_object.php file?
Sorry. Just had to use the same logic found on Customize the relationship field list query.
Here’s the code:
add_filter( 'acf/fields/post_object/query', 'change_posts_order' );
function change_posts_order( $args ) {
$args['orderby'] = 'date';
$args['order'] = 'DESC';
return $args;
}
And NOW I found the solution on the documentation.
Sorry. I’ll try to read first before I post again. 🙂